Models
Types

Models

User

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
first_name String
  • -
Yes -
last_name String
  • -
Yes -
email String
  • @unique
Yes -
password String?
  • -
No -
phone String?
  • -
No -
profile_photo String?
  • -
No -
role UserRole
  • @default(USER)
Yes -
status UserStatus?
  • @default(ACTIVE)
No -
is_verified Boolean?
  • @default(false)
No -
is_shopify_user Boolean?
  • @default(false)
No -
date_of_birth DateTime?
  • -
No -
country_code String?
  • -
No -
country String?
  • -
No -
address String?
  • -
No -
website_url String?
  • -
No -
social_handles Json?
  • -
No -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • @updatedAt
Yes -
deleted_at DateTime?
  • -
No -
deleted_by Int?
  • -
No -
shops Shop[]
  • -
Yes -
bundles Bundle[]
  • -
Yes -
bundle_elements Bundle_Element[]
  • -
Yes -
elements Element[]
  • -
Yes -
pricing_plans Pricing_Plan[]
  • -
Yes -
faqs Faq[]
  • -
Yes -
faq_categories Faq_Category[]
  • -
Yes -
categories Category[]
  • -
Yes -
tags Tag[]
  • -
Yes -
support_tickets Support_Ticket[]
  • -
Yes -
ticket_messages Ticket_Message[]
  • -
Yes -
affiliators Affiliator[]
  • -
Yes -
affiliator_commissions Affiliator_Commission[]
  • -
Yes -
affiliator_withdraw_requests Affiliator_Withdraw_Request[]
  • -
Yes -
coupons Coupon[]
  • -
Yes -
user_pament_methods User_Pament_Method[]
  • -
Yes -
team_members Team_Member[]
  • -
Yes -

Operations

findUnique

Find zero or one User

// Get one User
const user = await prisma.user.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

findFirst

Find first User

// Get one User
const user = await prisma.user.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereInput No
orderBy UserOrderByWithRelationInput[] | UserOrderByWithRelationInput No
cursor UserWhereUniqueInput No
take Int No
skip Int No
distinct UserScalarFieldEnum | UserScalarFieldEnum[] No

Output

Type: User
Required: No
List: No

findMany

Find zero or more User

// Get all User
const User = await prisma.user.findMany()
// Get first 10 User
const User = await prisma.user.findMany({ take: 10 })

Input

Name Type Required
where UserWhereInput No
orderBy UserOrderByWithRelationInput[] | UserOrderByWithRelationInput No
cursor UserWhereUniqueInput No
take Int No
skip Int No
distinct UserScalarFieldEnum | UserScalarFieldEnum[] No

Output

Type: User
Required: Yes
List: Yes

create

Create one User

// Create one User
const User = await prisma.user.create({
  data: {
    // ... data to create a User
  }
})

Input

Name Type Required
data UserCreateInput | UserUncheckedCreateInput Yes

Output

Type: User
Required: Yes
List: No

delete

Delete one User

// Delete one User
const User = await prisma.user.delete({
  where: {
    // ... filter to delete one User
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

update

Update one User

// Update one User
const user = await prisma.user.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserUpdateInput | UserUncheckedUpdateInput Yes
where UserWhereUniqueInput Yes

Output

Type: User
Required: No
List: No

deleteMany

Delete zero or more User

// Delete a few User
const { count } = await prisma.user.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where UserWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one User

const { count } = await prisma.user.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data UserUpdateManyMutationInput | UserUncheckedUpdateManyInput Yes
where UserWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one User

// Update or create a User
const user = await prisma.user.upsert({
  create: {
    // ... data to create a User
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the User we want to update
  }
})

Input

Name Type Required
where UserWhereUniqueInput Yes
create UserCreateInput | UserUncheckedCreateInput Yes
update UserUpdateInput | UserUncheckedUpdateInput Yes

Output

Type: User
Required: Yes
List: No

Shop

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
uuid String
  • @unique
Yes -
user_id Int
  • -
Yes -
shopify_shop_id Int
  • -
Yes -
name String
  • -
Yes -
domain String
  • -
Yes -
status ShopStatus
  • @default(ACTIVE)
Yes -
subscription_id Int?
  • -
No -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • @updatedAt
Yes -
user User?
  • -
No -
current_subscription Shop_Subscription?
  • -
No -
orders Order[]
  • -
Yes -
bookmarked_elements Bookmark[]
  • -
Yes -
wishlisted_elements Wishlist[]
  • -
Yes -
recent_used_elements Recent_Used_Element[]
  • -
Yes -
affiliator_commissions Affiliator_Commission[]
  • -
Yes -

Operations

findUnique

Find zero or one Shop

// Get one Shop
const shop = await prisma.shop.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ShopWhereUniqueInput Yes

Output

Type: Shop
Required: No
List: No

findFirst

Find first Shop

// Get one Shop
const shop = await prisma.shop.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ShopWhereInput No
orderBy ShopOrderByWithRelationInput[] | ShopOrderByWithRelationInput No
cursor ShopWhereUniqueInput No
take Int No
skip Int No
distinct ShopScalarFieldEnum | ShopScalarFieldEnum[] No

Output

Type: Shop
Required: No
List: No

findMany

Find zero or more Shop

// Get all Shop
const Shop = await prisma.shop.findMany()
// Get first 10 Shop
const Shop = await prisma.shop.findMany({ take: 10 })

Input

Name Type Required
where ShopWhereInput No
orderBy ShopOrderByWithRelationInput[] | ShopOrderByWithRelationInput No
cursor ShopWhereUniqueInput No
take Int No
skip Int No
distinct ShopScalarFieldEnum | ShopScalarFieldEnum[] No

Output

Type: Shop
Required: Yes
List: Yes

create

Create one Shop

// Create one Shop
const Shop = await prisma.shop.create({
  data: {
    // ... data to create a Shop
  }
})

Input

Name Type Required
data ShopCreateInput | ShopUncheckedCreateInput Yes

Output

Type: Shop
Required: Yes
List: No

delete

Delete one Shop

// Delete one Shop
const Shop = await prisma.shop.delete({
  where: {
    // ... filter to delete one Shop
  }
})

Input

Name Type Required
where ShopWhereUniqueInput Yes

Output

Type: Shop
Required: No
List: No

update

Update one Shop

// Update one Shop
const shop = await prisma.shop.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ShopUpdateInput | ShopUncheckedUpdateInput Yes
where ShopWhereUniqueInput Yes

Output

Type: Shop
Required: No
List: No

deleteMany

Delete zero or more Shop

// Delete a few Shop
const { count } = await prisma.shop.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ShopWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Shop

const { count } = await prisma.shop.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ShopUpdateManyMutationInput | ShopUncheckedUpdateManyInput Yes
where ShopWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Shop

// Update or create a Shop
const shop = await prisma.shop.upsert({
  create: {
    // ... data to create a Shop
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Shop we want to update
  }
})

Input

Name Type Required
where ShopWhereUniqueInput Yes
create ShopCreateInput | ShopUncheckedCreateInput Yes
update ShopUpdateInput | ShopUncheckedUpdateInput Yes

Output

Type: Shop
Required: Yes
List: No

Element

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
name String
  • -
Yes -
slug String
  • @unique
Yes -
description String
  • -
Yes -
content String
  • -
Yes -
file_name String
  • @unique
Yes -
status GenericStatus
  • @default(DRAFT)
Yes -
type ElementType
  • -
Yes -
price Decimal
  • -
Yes -
discount_type DiscountType?
  • @default(FLAT)
No -
discount_value Decimal?
  • -
No -
demo_url String?
  • -
No -
video_url String?
  • -
No -
version String?
  • @default(1.0.0)
No -
user_id Int
  • -
Yes -
wishlisted_count Int?
  • @default(0)
No -
bookmarked_count Int?
  • @default(0)
No -
added_theme_count Int?
  • @default(0)
No -
view_count Int?
  • @default(0)
No -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • @updatedAt
Yes -
deleted_at DateTime?
  • -
No -
deleted_by Int?
  • -
No -
user User?
  • -
No -
images Element_Image[]
  • -
Yes -
best_Uses Element_Best_Use[]
  • -
Yes -
tags Element_Tag[]
  • -
Yes -
categories Element_Category[]
  • -
Yes -
bundles Bundle_Element[]
  • -
Yes -
wishlisted_elements Wishlist[]
  • -
Yes -
bookmarked_elements Bookmark[]
  • -
Yes -
recent_used_elements Recent_Used_Element[]
  • -
Yes -

Operations

findUnique

Find zero or one Element

// Get one Element
const element = await prisma.element.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ElementWhereUniqueInput Yes

Output

Type: Element
Required: No
List: No

findFirst

Find first Element

// Get one Element
const element = await prisma.element.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ElementWhereInput No
orderBy ElementOrderByWithRelationInput[] | ElementOrderByWithRelationInput No
cursor ElementWhereUniqueInput No
take Int No
skip Int No
distinct ElementScalarFieldEnum | ElementScalarFieldEnum[] No

Output

Type: Element
Required: No
List: No

findMany

Find zero or more Element

// Get all Element
const Element = await prisma.element.findMany()
// Get first 10 Element
const Element = await prisma.element.findMany({ take: 10 })

Input

Name Type Required
where ElementWhereInput No
orderBy ElementOrderByWithRelationInput[] | ElementOrderByWithRelationInput No
cursor ElementWhereUniqueInput No
take Int No
skip Int No
distinct ElementScalarFieldEnum | ElementScalarFieldEnum[] No

Output

Type: Element
Required: Yes
List: Yes

create

Create one Element

// Create one Element
const Element = await prisma.element.create({
  data: {
    // ... data to create a Element
  }
})

Input

Name Type Required
data ElementCreateInput | ElementUncheckedCreateInput Yes

Output

Type: Element
Required: Yes
List: No

delete

Delete one Element

// Delete one Element
const Element = await prisma.element.delete({
  where: {
    // ... filter to delete one Element
  }
})

Input

Name Type Required
where ElementWhereUniqueInput Yes

Output

Type: Element
Required: No
List: No

update

Update one Element

// Update one Element
const element = await prisma.element.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ElementUpdateInput | ElementUncheckedUpdateInput Yes
where ElementWhereUniqueInput Yes

Output

Type: Element
Required: No
List: No

deleteMany

Delete zero or more Element

// Delete a few Element
const { count } = await prisma.element.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where ElementWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Element

const { count } = await prisma.element.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data ElementUpdateManyMutationInput | ElementUncheckedUpdateManyInput Yes
where ElementWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Element

// Update or create a Element
const element = await prisma.element.upsert({
  create: {
    // ... data to create a Element
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Element we want to update
  }
})

Input

Name Type Required
where ElementWhereUniqueInput Yes
create ElementCreateInput | ElementUncheckedCreateInput Yes
update ElementUpdateInput | ElementUncheckedUpdateInput Yes

Output

Type: Element
Required: Yes
List: No

Bundle

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
name String
  • -
Yes -
slug String
  • @unique
Yes -
description String
  • -
Yes -
status GenericStatus
  • @default(DRAFT)
Yes -
type BundleType
  • -
Yes -
is_auto_price Boolean?
  • @default(false)
No -
price Decimal
  • -
Yes -
discount_type DiscountType?
  • @default(FLAT)
No -
discount_value Decimal?
  • -
No -
demo_url String?
  • -
No -
video_url String?
  • -
No -
version String?
  • @default(1.0.0)
No -
user_id Int
  • -
Yes -
view_count Int?
  • @default(0)
No -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • @updatedAt
Yes -
deleted_at DateTime?
  • -
No -
deleted_by Int?
  • -
No -
user User?
  • -
No -
elements Bundle_Element[]
  • -
Yes -
images Bundle_Image[]
  • -
Yes -
categories Bundle_Category[]
  • -
Yes -

Operations

findUnique

Find zero or one Bundle

// Get one Bundle
const bundle = await prisma.bundle.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BundleWhereUniqueInput Yes

Output

Type: Bundle
Required: No
List: No

findFirst

Find first Bundle

// Get one Bundle
const bundle = await prisma.bundle.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BundleWhereInput No
orderBy BundleOrderByWithRelationInput[] | BundleOrderByWithRelationInput No
cursor BundleWhereUniqueInput No
take Int No
skip Int No
distinct BundleScalarFieldEnum | BundleScalarFieldEnum[] No

Output

Type: Bundle
Required: No
List: No

findMany

Find zero or more Bundle

// Get all Bundle
const Bundle = await prisma.bundle.findMany()
// Get first 10 Bundle
const Bundle = await prisma.bundle.findMany({ take: 10 })

Input

Name Type Required
where BundleWhereInput No
orderBy BundleOrderByWithRelationInput[] | BundleOrderByWithRelationInput No
cursor BundleWhereUniqueInput No
take Int No
skip Int No
distinct BundleScalarFieldEnum | BundleScalarFieldEnum[] No

Output

Type: Bundle
Required: Yes
List: Yes

create

Create one Bundle

// Create one Bundle
const Bundle = await prisma.bundle.create({
  data: {
    // ... data to create a Bundle
  }
})

Input

Name Type Required
data BundleCreateInput | BundleUncheckedCreateInput Yes

Output

Type: Bundle
Required: Yes
List: No

delete

Delete one Bundle

// Delete one Bundle
const Bundle = await prisma.bundle.delete({
  where: {
    // ... filter to delete one Bundle
  }
})

Input

Name Type Required
where BundleWhereUniqueInput Yes

Output

Type: Bundle
Required: No
List: No

update

Update one Bundle

// Update one Bundle
const bundle = await prisma.bundle.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BundleUpdateInput | BundleUncheckedUpdateInput Yes
where BundleWhereUniqueInput Yes

Output

Type: Bundle
Required: No
List: No

deleteMany

Delete zero or more Bundle

// Delete a few Bundle
const { count } = await prisma.bundle.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BundleWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Bundle

const { count } = await prisma.bundle.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BundleUpdateManyMutationInput | BundleUncheckedUpdateManyInput Yes
where BundleWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Bundle

// Update or create a Bundle
const bundle = await prisma.bundle.upsert({
  create: {
    // ... data to create a Bundle
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Bundle we want to update
  }
})

Input

Name Type Required
where BundleWhereUniqueInput Yes
create BundleCreateInput | BundleUncheckedCreateInput Yes
update BundleUpdateInput | BundleUncheckedUpdateInput Yes

Output

Type: Bundle
Required: Yes
List: No

Bundle_Element

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
bundle_id Int
  • -
Yes -
element_id Int
  • -
Yes -
element_type ElementType
  • -
Yes -
status GenericStatus
  • @default(DRAFT)
Yes -
user_id Int
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • @updatedAt
Yes -
deleted_at DateTime?
  • -
No -
deleted_by Int?
  • -
No -
user User?
  • -
No -
bundle Bundle?
  • -
No -
element Element?
  • -
No -

Operations

findUnique

Find zero or one Bundle_Element

// Get one Bundle_Element
const bundle_Element = await prisma.bundle_Element.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Bundle_ElementWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Bundle_Element

// Get one Bundle_Element
const bundle_Element = await prisma.bundle_Element.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Bundle_ElementWhereInput No
orderBy Bundle_ElementOrderByWithRelationInput[] | Bundle_ElementOrderByWithRelationInput No
cursor Bundle_ElementWhereUniqueInput No
take Int No
skip Int No
distinct Bundle_ElementScalarFieldEnum | Bundle_ElementScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Bundle_Element

// Get all Bundle_Element
const Bundle_Element = await prisma.bundle_Element.findMany()
// Get first 10 Bundle_Element
const Bundle_Element = await prisma.bundle_Element.findMany({ take: 10 })

Input

Name Type Required
where Bundle_ElementWhereInput No
orderBy Bundle_ElementOrderByWithRelationInput[] | Bundle_ElementOrderByWithRelationInput No
cursor Bundle_ElementWhereUniqueInput No
take Int No
skip Int No
distinct Bundle_ElementScalarFieldEnum | Bundle_ElementScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Bundle_Element

// Create one Bundle_Element
const Bundle_Element = await prisma.bundle_Element.create({
  data: {
    // ... data to create a Bundle_Element
  }
})

Input

Name Type Required
data Bundle_ElementCreateInput | Bundle_ElementUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Bundle_Element

// Delete one Bundle_Element
const Bundle_Element = await prisma.bundle_Element.delete({
  where: {
    // ... filter to delete one Bundle_Element
  }
})

Input

Name Type Required
where Bundle_ElementWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Bundle_Element

// Update one Bundle_Element
const bundle_Element = await prisma.bundle_Element.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Bundle_ElementUpdateInput | Bundle_ElementUncheckedUpdateInput Yes
where Bundle_ElementWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Bundle_Element

// Delete a few Bundle_Element
const { count } = await prisma.bundle_Element.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Bundle_ElementWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Bundle_Element

const { count } = await prisma.bundle_Element.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Bundle_ElementUpdateManyMutationInput | Bundle_ElementUncheckedUpdateManyInput Yes
where Bundle_ElementWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Bundle_Element

// Update or create a Bundle_Element
const bundle_Element = await prisma.bundle_Element.upsert({
  create: {
    // ... data to create a Bundle_Element
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Bundle_Element we want to update
  }
})

Input

Name Type Required
where Bundle_ElementWhereUniqueInput Yes
create Bundle_ElementCreateInput | Bundle_ElementUncheckedCreateInput Yes
update Bundle_ElementUpdateInput | Bundle_ElementUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Element_Image

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
url String
  • -
Yes -
element_id Int
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -
element Element?
  • -
No -

Operations

findUnique

Find zero or one Element_Image

// Get one Element_Image
const element_Image = await prisma.element_Image.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Element_ImageWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Element_Image

// Get one Element_Image
const element_Image = await prisma.element_Image.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Element_ImageWhereInput No
orderBy Element_ImageOrderByWithRelationInput[] | Element_ImageOrderByWithRelationInput No
cursor Element_ImageWhereUniqueInput No
take Int No
skip Int No
distinct Element_ImageScalarFieldEnum | Element_ImageScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Element_Image

// Get all Element_Image
const Element_Image = await prisma.element_Image.findMany()
// Get first 10 Element_Image
const Element_Image = await prisma.element_Image.findMany({ take: 10 })

Input

Name Type Required
where Element_ImageWhereInput No
orderBy Element_ImageOrderByWithRelationInput[] | Element_ImageOrderByWithRelationInput No
cursor Element_ImageWhereUniqueInput No
take Int No
skip Int No
distinct Element_ImageScalarFieldEnum | Element_ImageScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Element_Image

// Create one Element_Image
const Element_Image = await prisma.element_Image.create({
  data: {
    // ... data to create a Element_Image
  }
})

Input

Name Type Required
data Element_ImageCreateInput | Element_ImageUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Element_Image

// Delete one Element_Image
const Element_Image = await prisma.element_Image.delete({
  where: {
    // ... filter to delete one Element_Image
  }
})

Input

Name Type Required
where Element_ImageWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Element_Image

// Update one Element_Image
const element_Image = await prisma.element_Image.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Element_ImageUpdateInput | Element_ImageUncheckedUpdateInput Yes
where Element_ImageWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Element_Image

// Delete a few Element_Image
const { count } = await prisma.element_Image.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Element_ImageWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Element_Image

const { count } = await prisma.element_Image.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Element_ImageUpdateManyMutationInput | Element_ImageUncheckedUpdateManyInput Yes
where Element_ImageWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Element_Image

// Update or create a Element_Image
const element_Image = await prisma.element_Image.upsert({
  create: {
    // ... data to create a Element_Image
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Element_Image we want to update
  }
})

Input

Name Type Required
where Element_ImageWhereUniqueInput Yes
create Element_ImageCreateInput | Element_ImageUncheckedCreateInput Yes
update Element_ImageUpdateInput | Element_ImageUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Bundle_Image

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
url String
  • -
Yes -
bundle_id Int
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -
bundle Bundle?
  • -
No -

Operations

findUnique

Find zero or one Bundle_Image

// Get one Bundle_Image
const bundle_Image = await prisma.bundle_Image.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Bundle_ImageWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Bundle_Image

// Get one Bundle_Image
const bundle_Image = await prisma.bundle_Image.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Bundle_ImageWhereInput No
orderBy Bundle_ImageOrderByWithRelationInput[] | Bundle_ImageOrderByWithRelationInput No
cursor Bundle_ImageWhereUniqueInput No
take Int No
skip Int No
distinct Bundle_ImageScalarFieldEnum | Bundle_ImageScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Bundle_Image

// Get all Bundle_Image
const Bundle_Image = await prisma.bundle_Image.findMany()
// Get first 10 Bundle_Image
const Bundle_Image = await prisma.bundle_Image.findMany({ take: 10 })

Input

Name Type Required
where Bundle_ImageWhereInput No
orderBy Bundle_ImageOrderByWithRelationInput[] | Bundle_ImageOrderByWithRelationInput No
cursor Bundle_ImageWhereUniqueInput No
take Int No
skip Int No
distinct Bundle_ImageScalarFieldEnum | Bundle_ImageScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Bundle_Image

// Create one Bundle_Image
const Bundle_Image = await prisma.bundle_Image.create({
  data: {
    // ... data to create a Bundle_Image
  }
})

Input

Name Type Required
data Bundle_ImageCreateInput | Bundle_ImageUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Bundle_Image

// Delete one Bundle_Image
const Bundle_Image = await prisma.bundle_Image.delete({
  where: {
    // ... filter to delete one Bundle_Image
  }
})

Input

Name Type Required
where Bundle_ImageWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Bundle_Image

// Update one Bundle_Image
const bundle_Image = await prisma.bundle_Image.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Bundle_ImageUpdateInput | Bundle_ImageUncheckedUpdateInput Yes
where Bundle_ImageWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Bundle_Image

// Delete a few Bundle_Image
const { count } = await prisma.bundle_Image.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Bundle_ImageWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Bundle_Image

const { count } = await prisma.bundle_Image.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Bundle_ImageUpdateManyMutationInput | Bundle_ImageUncheckedUpdateManyInput Yes
where Bundle_ImageWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Bundle_Image

// Update or create a Bundle_Image
const bundle_Image = await prisma.bundle_Image.upsert({
  create: {
    // ... data to create a Bundle_Image
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Bundle_Image we want to update
  }
})

Input

Name Type Required
where Bundle_ImageWhereUniqueInput Yes
create Bundle_ImageCreateInput | Bundle_ImageUncheckedCreateInput Yes
update Bundle_ImageUpdateInput | Bundle_ImageUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Element_Best_Use

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
element_id Int
  • -
Yes -
title String
  • -
Yes -
description String
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • @updatedAt
Yes -
element Element?
  • -
No -

Operations

findUnique

Find zero or one Element_Best_Use

// Get one Element_Best_Use
const element_Best_Use = await prisma.element_Best_Use.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Element_Best_UseWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Element_Best_Use

// Get one Element_Best_Use
const element_Best_Use = await prisma.element_Best_Use.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Element_Best_UseWhereInput No
orderBy Element_Best_UseOrderByWithRelationInput[] | Element_Best_UseOrderByWithRelationInput No
cursor Element_Best_UseWhereUniqueInput No
take Int No
skip Int No
distinct Element_Best_UseScalarFieldEnum | Element_Best_UseScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Element_Best_Use

// Get all Element_Best_Use
const Element_Best_Use = await prisma.element_Best_Use.findMany()
// Get first 10 Element_Best_Use
const Element_Best_Use = await prisma.element_Best_Use.findMany({ take: 10 })

Input

Name Type Required
where Element_Best_UseWhereInput No
orderBy Element_Best_UseOrderByWithRelationInput[] | Element_Best_UseOrderByWithRelationInput No
cursor Element_Best_UseWhereUniqueInput No
take Int No
skip Int No
distinct Element_Best_UseScalarFieldEnum | Element_Best_UseScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Element_Best_Use

// Create one Element_Best_Use
const Element_Best_Use = await prisma.element_Best_Use.create({
  data: {
    // ... data to create a Element_Best_Use
  }
})

Input

Name Type Required
data Element_Best_UseCreateInput | Element_Best_UseUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Element_Best_Use

// Delete one Element_Best_Use
const Element_Best_Use = await prisma.element_Best_Use.delete({
  where: {
    // ... filter to delete one Element_Best_Use
  }
})

Input

Name Type Required
where Element_Best_UseWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Element_Best_Use

// Update one Element_Best_Use
const element_Best_Use = await prisma.element_Best_Use.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Element_Best_UseUpdateInput | Element_Best_UseUncheckedUpdateInput Yes
where Element_Best_UseWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Element_Best_Use

// Delete a few Element_Best_Use
const { count } = await prisma.element_Best_Use.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Element_Best_UseWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Element_Best_Use

const { count } = await prisma.element_Best_Use.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Element_Best_UseUpdateManyMutationInput | Element_Best_UseUncheckedUpdateManyInput Yes
where Element_Best_UseWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Element_Best_Use

// Update or create a Element_Best_Use
const element_Best_Use = await prisma.element_Best_Use.upsert({
  create: {
    // ... data to create a Element_Best_Use
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Element_Best_Use we want to update
  }
})

Input

Name Type Required
where Element_Best_UseWhereUniqueInput Yes
create Element_Best_UseCreateInput | Element_Best_UseUncheckedCreateInput Yes
update Element_Best_UseUpdateInput | Element_Best_UseUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Category

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
name String
  • -
Yes -
slug String
  • @unique
Yes -
description String?
  • -
No -
type AssetType
  • -
Yes -
status GenericStatus
  • @default(DRAFT)
Yes -
image String?
  • -
No -
banner String?
  • -
No -
user_id Int
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • @updatedAt
Yes -
deleted_at DateTime?
  • -
No -
deleted_by Int?
  • -
No -
user User?
  • -
No -
element_categories Element_Category[]
  • -
Yes -
bundle_categories Bundle_Category[]
  • -
Yes -

Operations

findUnique

Find zero or one Category

// Get one Category
const category = await prisma.category.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CategoryWhereUniqueInput Yes

Output

Type: Category
Required: No
List: No

findFirst

Find first Category

// Get one Category
const category = await prisma.category.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CategoryWhereInput No
orderBy CategoryOrderByWithRelationInput[] | CategoryOrderByWithRelationInput No
cursor CategoryWhereUniqueInput No
take Int No
skip Int No
distinct CategoryScalarFieldEnum | CategoryScalarFieldEnum[] No

Output

Type: Category
Required: No
List: No

findMany

Find zero or more Category

// Get all Category
const Category = await prisma.category.findMany()
// Get first 10 Category
const Category = await prisma.category.findMany({ take: 10 })

Input

Name Type Required
where CategoryWhereInput No
orderBy CategoryOrderByWithRelationInput[] | CategoryOrderByWithRelationInput No
cursor CategoryWhereUniqueInput No
take Int No
skip Int No
distinct CategoryScalarFieldEnum | CategoryScalarFieldEnum[] No

Output

Type: Category
Required: Yes
List: Yes

create

Create one Category

// Create one Category
const Category = await prisma.category.create({
  data: {
    // ... data to create a Category
  }
})

Input

Name Type Required
data CategoryCreateInput | CategoryUncheckedCreateInput Yes

Output

Type: Category
Required: Yes
List: No

delete

Delete one Category

// Delete one Category
const Category = await prisma.category.delete({
  where: {
    // ... filter to delete one Category
  }
})

Input

Name Type Required
where CategoryWhereUniqueInput Yes

Output

Type: Category
Required: No
List: No

update

Update one Category

// Update one Category
const category = await prisma.category.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CategoryUpdateInput | CategoryUncheckedUpdateInput Yes
where CategoryWhereUniqueInput Yes

Output

Type: Category
Required: No
List: No

deleteMany

Delete zero or more Category

// Delete a few Category
const { count } = await prisma.category.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CategoryWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Category

const { count } = await prisma.category.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CategoryUpdateManyMutationInput | CategoryUncheckedUpdateManyInput Yes
where CategoryWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Category

// Update or create a Category
const category = await prisma.category.upsert({
  create: {
    // ... data to create a Category
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Category we want to update
  }
})

Input

Name Type Required
where CategoryWhereUniqueInput Yes
create CategoryCreateInput | CategoryUncheckedCreateInput Yes
update CategoryUpdateInput | CategoryUncheckedUpdateInput Yes

Output

Type: Category
Required: Yes
List: No

Element_Category

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
element_id Int
  • -
Yes -
category_id Int
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -
element Element?
  • -
No -
category Category?
  • -
No -

Operations

findUnique

Find zero or one Element_Category

// Get one Element_Category
const element_Category = await prisma.element_Category.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Element_CategoryWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Element_Category

// Get one Element_Category
const element_Category = await prisma.element_Category.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Element_CategoryWhereInput No
orderBy Element_CategoryOrderByWithRelationInput[] | Element_CategoryOrderByWithRelationInput No
cursor Element_CategoryWhereUniqueInput No
take Int No
skip Int No
distinct Element_CategoryScalarFieldEnum | Element_CategoryScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Element_Category

// Get all Element_Category
const Element_Category = await prisma.element_Category.findMany()
// Get first 10 Element_Category
const Element_Category = await prisma.element_Category.findMany({ take: 10 })

Input

Name Type Required
where Element_CategoryWhereInput No
orderBy Element_CategoryOrderByWithRelationInput[] | Element_CategoryOrderByWithRelationInput No
cursor Element_CategoryWhereUniqueInput No
take Int No
skip Int No
distinct Element_CategoryScalarFieldEnum | Element_CategoryScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Element_Category

// Create one Element_Category
const Element_Category = await prisma.element_Category.create({
  data: {
    // ... data to create a Element_Category
  }
})

Input

Name Type Required
data Element_CategoryCreateInput | Element_CategoryUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Element_Category

// Delete one Element_Category
const Element_Category = await prisma.element_Category.delete({
  where: {
    // ... filter to delete one Element_Category
  }
})

Input

Name Type Required
where Element_CategoryWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Element_Category

// Update one Element_Category
const element_Category = await prisma.element_Category.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Element_CategoryUpdateInput | Element_CategoryUncheckedUpdateInput Yes
where Element_CategoryWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Element_Category

// Delete a few Element_Category
const { count } = await prisma.element_Category.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Element_CategoryWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Element_Category

const { count } = await prisma.element_Category.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Element_CategoryUpdateManyMutationInput | Element_CategoryUncheckedUpdateManyInput Yes
where Element_CategoryWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Element_Category

// Update or create a Element_Category
const element_Category = await prisma.element_Category.upsert({
  create: {
    // ... data to create a Element_Category
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Element_Category we want to update
  }
})

Input

Name Type Required
where Element_CategoryWhereUniqueInput Yes
create Element_CategoryCreateInput | Element_CategoryUncheckedCreateInput Yes
update Element_CategoryUpdateInput | Element_CategoryUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Bundle_Category

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
bundle_id Int
  • -
Yes -
category_id Int
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -
bundle Bundle?
  • -
No -
category Category?
  • -
No -

Operations

findUnique

Find zero or one Bundle_Category

// Get one Bundle_Category
const bundle_Category = await prisma.bundle_Category.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Bundle_CategoryWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Bundle_Category

// Get one Bundle_Category
const bundle_Category = await prisma.bundle_Category.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Bundle_CategoryWhereInput No
orderBy Bundle_CategoryOrderByWithRelationInput[] | Bundle_CategoryOrderByWithRelationInput No
cursor Bundle_CategoryWhereUniqueInput No
take Int No
skip Int No
distinct Bundle_CategoryScalarFieldEnum | Bundle_CategoryScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Bundle_Category

// Get all Bundle_Category
const Bundle_Category = await prisma.bundle_Category.findMany()
// Get first 10 Bundle_Category
const Bundle_Category = await prisma.bundle_Category.findMany({ take: 10 })

Input

Name Type Required
where Bundle_CategoryWhereInput No
orderBy Bundle_CategoryOrderByWithRelationInput[] | Bundle_CategoryOrderByWithRelationInput No
cursor Bundle_CategoryWhereUniqueInput No
take Int No
skip Int No
distinct Bundle_CategoryScalarFieldEnum | Bundle_CategoryScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Bundle_Category

// Create one Bundle_Category
const Bundle_Category = await prisma.bundle_Category.create({
  data: {
    // ... data to create a Bundle_Category
  }
})

Input

Name Type Required
data Bundle_CategoryCreateInput | Bundle_CategoryUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Bundle_Category

// Delete one Bundle_Category
const Bundle_Category = await prisma.bundle_Category.delete({
  where: {
    // ... filter to delete one Bundle_Category
  }
})

Input

Name Type Required
where Bundle_CategoryWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Bundle_Category

// Update one Bundle_Category
const bundle_Category = await prisma.bundle_Category.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Bundle_CategoryUpdateInput | Bundle_CategoryUncheckedUpdateInput Yes
where Bundle_CategoryWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Bundle_Category

// Delete a few Bundle_Category
const { count } = await prisma.bundle_Category.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Bundle_CategoryWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Bundle_Category

const { count } = await prisma.bundle_Category.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Bundle_CategoryUpdateManyMutationInput | Bundle_CategoryUncheckedUpdateManyInput Yes
where Bundle_CategoryWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Bundle_Category

// Update or create a Bundle_Category
const bundle_Category = await prisma.bundle_Category.upsert({
  create: {
    // ... data to create a Bundle_Category
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Bundle_Category we want to update
  }
})

Input

Name Type Required
where Bundle_CategoryWhereUniqueInput Yes
create Bundle_CategoryCreateInput | Bundle_CategoryUncheckedCreateInput Yes
update Bundle_CategoryUpdateInput | Bundle_CategoryUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Tag

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
name String
  • -
Yes -
slug String
  • @unique
Yes -
user_id Int
  • -
Yes -
description String?
  • -
No -
image String?
  • -
No -
banner String?
  • -
No -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • @updatedAt
Yes -
deleted_at DateTime?
  • -
No -
deleted_by Int?
  • -
No -
user User?
  • -
No -
elements Element_Tag[]
  • -
Yes -

Operations

findUnique

Find zero or one Tag

// Get one Tag
const tag = await prisma.tag.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TagWhereUniqueInput Yes

Output

Type: Tag
Required: No
List: No

findFirst

Find first Tag

// Get one Tag
const tag = await prisma.tag.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TagWhereInput No
orderBy TagOrderByWithRelationInput[] | TagOrderByWithRelationInput No
cursor TagWhereUniqueInput No
take Int No
skip Int No
distinct TagScalarFieldEnum | TagScalarFieldEnum[] No

Output

Type: Tag
Required: No
List: No

findMany

Find zero or more Tag

// Get all Tag
const Tag = await prisma.tag.findMany()
// Get first 10 Tag
const Tag = await prisma.tag.findMany({ take: 10 })

Input

Name Type Required
where TagWhereInput No
orderBy TagOrderByWithRelationInput[] | TagOrderByWithRelationInput No
cursor TagWhereUniqueInput No
take Int No
skip Int No
distinct TagScalarFieldEnum | TagScalarFieldEnum[] No

Output

Type: Tag
Required: Yes
List: Yes

create

Create one Tag

// Create one Tag
const Tag = await prisma.tag.create({
  data: {
    // ... data to create a Tag
  }
})

Input

Name Type Required
data TagCreateInput | TagUncheckedCreateInput Yes

Output

Type: Tag
Required: Yes
List: No

delete

Delete one Tag

// Delete one Tag
const Tag = await prisma.tag.delete({
  where: {
    // ... filter to delete one Tag
  }
})

Input

Name Type Required
where TagWhereUniqueInput Yes

Output

Type: Tag
Required: No
List: No

update

Update one Tag

// Update one Tag
const tag = await prisma.tag.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TagUpdateInput | TagUncheckedUpdateInput Yes
where TagWhereUniqueInput Yes

Output

Type: Tag
Required: No
List: No

deleteMany

Delete zero or more Tag

// Delete a few Tag
const { count } = await prisma.tag.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where TagWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Tag

const { count } = await prisma.tag.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data TagUpdateManyMutationInput | TagUncheckedUpdateManyInput Yes
where TagWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Tag

// Update or create a Tag
const tag = await prisma.tag.upsert({
  create: {
    // ... data to create a Tag
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Tag we want to update
  }
})

Input

Name Type Required
where TagWhereUniqueInput Yes
create TagCreateInput | TagUncheckedCreateInput Yes
update TagUpdateInput | TagUncheckedUpdateInput Yes

Output

Type: Tag
Required: Yes
List: No

Element_Tag

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
element_id Int
  • -
Yes -
tag_id Int
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -
tag Tag?
  • -
No -
element Element?
  • -
No -

Operations

findUnique

Find zero or one Element_Tag

// Get one Element_Tag
const element_Tag = await prisma.element_Tag.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Element_TagWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Element_Tag

// Get one Element_Tag
const element_Tag = await prisma.element_Tag.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Element_TagWhereInput No
orderBy Element_TagOrderByWithRelationInput[] | Element_TagOrderByWithRelationInput No
cursor Element_TagWhereUniqueInput No
take Int No
skip Int No
distinct Element_TagScalarFieldEnum | Element_TagScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Element_Tag

// Get all Element_Tag
const Element_Tag = await prisma.element_Tag.findMany()
// Get first 10 Element_Tag
const Element_Tag = await prisma.element_Tag.findMany({ take: 10 })

Input

Name Type Required
where Element_TagWhereInput No
orderBy Element_TagOrderByWithRelationInput[] | Element_TagOrderByWithRelationInput No
cursor Element_TagWhereUniqueInput No
take Int No
skip Int No
distinct Element_TagScalarFieldEnum | Element_TagScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Element_Tag

// Create one Element_Tag
const Element_Tag = await prisma.element_Tag.create({
  data: {
    // ... data to create a Element_Tag
  }
})

Input

Name Type Required
data Element_TagCreateInput | Element_TagUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Element_Tag

// Delete one Element_Tag
const Element_Tag = await prisma.element_Tag.delete({
  where: {
    // ... filter to delete one Element_Tag
  }
})

Input

Name Type Required
where Element_TagWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Element_Tag

// Update one Element_Tag
const element_Tag = await prisma.element_Tag.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Element_TagUpdateInput | Element_TagUncheckedUpdateInput Yes
where Element_TagWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Element_Tag

// Delete a few Element_Tag
const { count } = await prisma.element_Tag.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Element_TagWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Element_Tag

const { count } = await prisma.element_Tag.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Element_TagUpdateManyMutationInput | Element_TagUncheckedUpdateManyInput Yes
where Element_TagWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Element_Tag

// Update or create a Element_Tag
const element_Tag = await prisma.element_Tag.upsert({
  create: {
    // ... data to create a Element_Tag
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Element_Tag we want to update
  }
})

Input

Name Type Required
where Element_TagWhereUniqueInput Yes
create Element_TagCreateInput | Element_TagUncheckedCreateInput Yes
update Element_TagUpdateInput | Element_TagUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Session

Fields

Name Type Attributes Required Comment
id Int
  • @id
Yes -
shop String
  • -
Yes -
state String?
  • -
No -
isOnline Boolean
  • -
Yes -
scope String
  • -
Yes -
userId Int?
  • -
No -

Operations

findUnique

Find zero or one Session

// Get one Session
const session = await prisma.session.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SessionWhereUniqueInput Yes

Output

Type: Session
Required: No
List: No

findFirst

Find first Session

// Get one Session
const session = await prisma.session.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SessionWhereInput No
orderBy SessionOrderByWithRelationInput[] | SessionOrderByWithRelationInput No
cursor SessionWhereUniqueInput No
take Int No
skip Int No
distinct SessionScalarFieldEnum | SessionScalarFieldEnum[] No

Output

Type: Session
Required: No
List: No

findMany

Find zero or more Session

// Get all Session
const Session = await prisma.session.findMany()
// Get first 10 Session
const Session = await prisma.session.findMany({ take: 10 })

Input

Name Type Required
where SessionWhereInput No
orderBy SessionOrderByWithRelationInput[] | SessionOrderByWithRelationInput No
cursor SessionWhereUniqueInput No
take Int No
skip Int No
distinct SessionScalarFieldEnum | SessionScalarFieldEnum[] No

Output

Type: Session
Required: Yes
List: Yes

create

Create one Session

// Create one Session
const Session = await prisma.session.create({
  data: {
    // ... data to create a Session
  }
})

Input

Name Type Required
data SessionCreateInput | SessionUncheckedCreateInput Yes

Output

Type: Session
Required: Yes
List: No

delete

Delete one Session

// Delete one Session
const Session = await prisma.session.delete({
  where: {
    // ... filter to delete one Session
  }
})

Input

Name Type Required
where SessionWhereUniqueInput Yes

Output

Type: Session
Required: No
List: No

update

Update one Session

// Update one Session
const session = await prisma.session.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SessionUpdateInput | SessionUncheckedUpdateInput Yes
where SessionWhereUniqueInput Yes

Output

Type: Session
Required: No
List: No

deleteMany

Delete zero or more Session

// Delete a few Session
const { count } = await prisma.session.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where SessionWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Session

const { count } = await prisma.session.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data SessionUpdateManyMutationInput | SessionUncheckedUpdateManyInput Yes
where SessionWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Session

// Update or create a Session
const session = await prisma.session.upsert({
  create: {
    // ... data to create a Session
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Session we want to update
  }
})

Input

Name Type Required
where SessionWhereUniqueInput Yes
create SessionCreateInput | SessionUncheckedCreateInput Yes
update SessionUpdateInput | SessionUncheckedUpdateInput Yes

Output

Type: Session
Required: Yes
List: No

Order

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
uuid String
  • @unique
Yes -
shop_id Int
  • -
Yes -
asset_type AssetType
  • -
Yes -
status OrderStatus
  • @default(PENDING)
Yes -
sub_total Decimal
  • -
Yes -
discounted_amout Decimal?
  • -
No -
coupon_id Int?
  • -
No -
coupon_code String?
  • -
No -
coupon_discount_type DiscountType?
  • @default(FLAT)
No -
coupon_discount_value Decimal?
  • -
No -
grand_total Decimal
  • -
Yes -
affiliated_by Int?
  • -
No -
affiliated_commission Decimal?
  • -
No -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • @updatedAt
Yes -
shop Shop?
  • -
No -
coupon Coupon?
  • -
No -
order_items Order_Item[]
  • -
Yes -
affiliator_commissions Affiliator_Commission[]
  • -
Yes -

Operations

findUnique

Find zero or one Order

// Get one Order
const order = await prisma.order.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrderWhereUniqueInput Yes

Output

Type: Order
Required: No
List: No

findFirst

Find first Order

// Get one Order
const order = await prisma.order.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrderWhereInput No
orderBy OrderOrderByWithRelationInput[] | OrderOrderByWithRelationInput No
cursor OrderWhereUniqueInput No
take Int No
skip Int No
distinct OrderScalarFieldEnum | OrderScalarFieldEnum[] No

Output

Type: Order
Required: No
List: No

findMany

Find zero or more Order

// Get all Order
const Order = await prisma.order.findMany()
// Get first 10 Order
const Order = await prisma.order.findMany({ take: 10 })

Input

Name Type Required
where OrderWhereInput No
orderBy OrderOrderByWithRelationInput[] | OrderOrderByWithRelationInput No
cursor OrderWhereUniqueInput No
take Int No
skip Int No
distinct OrderScalarFieldEnum | OrderScalarFieldEnum[] No

Output

Type: Order
Required: Yes
List: Yes

create

Create one Order

// Create one Order
const Order = await prisma.order.create({
  data: {
    // ... data to create a Order
  }
})

Input

Name Type Required
data OrderCreateInput | OrderUncheckedCreateInput Yes

Output

Type: Order
Required: Yes
List: No

delete

Delete one Order

// Delete one Order
const Order = await prisma.order.delete({
  where: {
    // ... filter to delete one Order
  }
})

Input

Name Type Required
where OrderWhereUniqueInput Yes

Output

Type: Order
Required: No
List: No

update

Update one Order

// Update one Order
const order = await prisma.order.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data OrderUpdateInput | OrderUncheckedUpdateInput Yes
where OrderWhereUniqueInput Yes

Output

Type: Order
Required: No
List: No

deleteMany

Delete zero or more Order

// Delete a few Order
const { count } = await prisma.order.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where OrderWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Order

const { count } = await prisma.order.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data OrderUpdateManyMutationInput | OrderUncheckedUpdateManyInput Yes
where OrderWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Order

// Update or create a Order
const order = await prisma.order.upsert({
  create: {
    // ... data to create a Order
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Order we want to update
  }
})

Input

Name Type Required
where OrderWhereUniqueInput Yes
create OrderCreateInput | OrderUncheckedCreateInput Yes
update OrderUpdateInput | OrderUncheckedUpdateInput Yes

Output

Type: Order
Required: Yes
List: No

Order_Item

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
order_id Int
  • -
Yes -
asset_id Int
  • -
Yes -
asset_type AssetType
  • -
Yes -
price Decimal
  • -
Yes -
discounted_price Decimal?
  • -
No -
discount_type DiscountType?
  • @default(FLAT)
No -
discount_value Decimal?
  • -
No -
order_bundle_id Int?
  • -
No -
order Order?
  • -
No -

Operations

findUnique

Find zero or one Order_Item

// Get one Order_Item
const order_Item = await prisma.order_Item.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Order_ItemWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Order_Item

// Get one Order_Item
const order_Item = await prisma.order_Item.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Order_ItemWhereInput No
orderBy Order_ItemOrderByWithRelationInput[] | Order_ItemOrderByWithRelationInput No
cursor Order_ItemWhereUniqueInput No
take Int No
skip Int No
distinct Order_ItemScalarFieldEnum | Order_ItemScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Order_Item

// Get all Order_Item
const Order_Item = await prisma.order_Item.findMany()
// Get first 10 Order_Item
const Order_Item = await prisma.order_Item.findMany({ take: 10 })

Input

Name Type Required
where Order_ItemWhereInput No
orderBy Order_ItemOrderByWithRelationInput[] | Order_ItemOrderByWithRelationInput No
cursor Order_ItemWhereUniqueInput No
take Int No
skip Int No
distinct Order_ItemScalarFieldEnum | Order_ItemScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Order_Item

// Create one Order_Item
const Order_Item = await prisma.order_Item.create({
  data: {
    // ... data to create a Order_Item
  }
})

Input

Name Type Required
data Order_ItemCreateInput | Order_ItemUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Order_Item

// Delete one Order_Item
const Order_Item = await prisma.order_Item.delete({
  where: {
    // ... filter to delete one Order_Item
  }
})

Input

Name Type Required
where Order_ItemWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Order_Item

// Update one Order_Item
const order_Item = await prisma.order_Item.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Order_ItemUpdateInput | Order_ItemUncheckedUpdateInput Yes
where Order_ItemWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Order_Item

// Delete a few Order_Item
const { count } = await prisma.order_Item.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Order_ItemWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Order_Item

const { count } = await prisma.order_Item.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Order_ItemUpdateManyMutationInput | Order_ItemUncheckedUpdateManyInput Yes
where Order_ItemWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Order_Item

// Update or create a Order_Item
const order_Item = await prisma.order_Item.upsert({
  create: {
    // ... data to create a Order_Item
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Order_Item we want to update
  }
})

Input

Name Type Required
where Order_ItemWhereUniqueInput Yes
create Order_ItemCreateInput | Order_ItemUncheckedCreateInput Yes
update Order_ItemUpdateInput | Order_ItemUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Coupon

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
code String
  • @unique
Yes -
status CouponStatus
  • @default(INACTIVE)
Yes -
expired_at DateTime?
  • -
No -
max_total_applied Int?
  • @default(-1)
No -
max_applied_by_shop Int?
  • @default(-1)
No -
discount_type DiscountType?
  • @default(FLAT)
No -
discount_value Decimal?
  • -
No -
min_order_amount Decimal?
  • -
No -
max_discount_limit Decimal?
  • @default(-1)
No -
is_apply_on_asset_discount Boolean?
  • @default(true)
No -
affiliated_by Int?
  • -
No -
commission_type DiscountType?
  • @default(FLAT)
No -
commission_value Decimal?
  • -
No -
user_id Int
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • @updatedAt
Yes -
deleted_at DateTime?
  • -
No -
deleted_by Int?
  • -
No -
affiliator Affiliator?
  • -
No -
user User?
  • -
No -
orders Order[]
  • -
Yes -
affiliator_commissions Affiliator_Commission[]
  • -
Yes -

Operations

findUnique

Find zero or one Coupon

// Get one Coupon
const coupon = await prisma.coupon.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CouponWhereUniqueInput Yes

Output

Type: Coupon
Required: No
List: No

findFirst

Find first Coupon

// Get one Coupon
const coupon = await prisma.coupon.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CouponWhereInput No
orderBy CouponOrderByWithRelationInput[] | CouponOrderByWithRelationInput No
cursor CouponWhereUniqueInput No
take Int No
skip Int No
distinct CouponScalarFieldEnum | CouponScalarFieldEnum[] No

Output

Type: Coupon
Required: No
List: No

findMany

Find zero or more Coupon

// Get all Coupon
const Coupon = await prisma.coupon.findMany()
// Get first 10 Coupon
const Coupon = await prisma.coupon.findMany({ take: 10 })

Input

Name Type Required
where CouponWhereInput No
orderBy CouponOrderByWithRelationInput[] | CouponOrderByWithRelationInput No
cursor CouponWhereUniqueInput No
take Int No
skip Int No
distinct CouponScalarFieldEnum | CouponScalarFieldEnum[] No

Output

Type: Coupon
Required: Yes
List: Yes

create

Create one Coupon

// Create one Coupon
const Coupon = await prisma.coupon.create({
  data: {
    // ... data to create a Coupon
  }
})

Input

Name Type Required
data CouponCreateInput | CouponUncheckedCreateInput Yes

Output

Type: Coupon
Required: Yes
List: No

delete

Delete one Coupon

// Delete one Coupon
const Coupon = await prisma.coupon.delete({
  where: {
    // ... filter to delete one Coupon
  }
})

Input

Name Type Required
where CouponWhereUniqueInput Yes

Output

Type: Coupon
Required: No
List: No

update

Update one Coupon

// Update one Coupon
const coupon = await prisma.coupon.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CouponUpdateInput | CouponUncheckedUpdateInput Yes
where CouponWhereUniqueInput Yes

Output

Type: Coupon
Required: No
List: No

deleteMany

Delete zero or more Coupon

// Delete a few Coupon
const { count } = await prisma.coupon.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where CouponWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Coupon

const { count } = await prisma.coupon.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data CouponUpdateManyMutationInput | CouponUncheckedUpdateManyInput Yes
where CouponWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Coupon

// Update or create a Coupon
const coupon = await prisma.coupon.upsert({
  create: {
    // ... data to create a Coupon
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Coupon we want to update
  }
})

Input

Name Type Required
where CouponWhereUniqueInput Yes
create CouponCreateInput | CouponUncheckedCreateInput Yes
update CouponUpdateInput | CouponUncheckedUpdateInput Yes

Output

Type: Coupon
Required: Yes
List: No

Affiliator

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
uuid String
  • @unique
Yes -
user_id Int
  • -
Yes -
invited_by Int?
  • -
No -
type AffiliatorType
  • -
Yes -
type_other String?
  • -
No -
status AffiliatorStatus
  • @default(PENDING)
Yes -
total_earned Decimal?
  • -
No -
total_paid Decimal?
  • -
No -
current_coupon_id Int?
  • -
No -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • @updatedAt
Yes -
deleted_at DateTime?
  • -
No -
deleted_by Int?
  • -
No -
user User?
  • -
No -
affiliator_withdraw_requests Affiliator_Withdraw_Request[]
  • -
Yes -
affiliator_commissions Affiliator_Commission[]
  • -
Yes -
coupons Coupon[]
  • -
Yes -

Operations

findUnique

Find zero or one Affiliator

// Get one Affiliator
const affiliator = await prisma.affiliator.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AffiliatorWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Affiliator

// Get one Affiliator
const affiliator = await prisma.affiliator.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AffiliatorWhereInput No
orderBy AffiliatorOrderByWithRelationInput[] | AffiliatorOrderByWithRelationInput No
cursor AffiliatorWhereUniqueInput No
take Int No
skip Int No
distinct AffiliatorScalarFieldEnum | AffiliatorScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Affiliator

// Get all Affiliator
const Affiliator = await prisma.affiliator.findMany()
// Get first 10 Affiliator
const Affiliator = await prisma.affiliator.findMany({ take: 10 })

Input

Name Type Required
where AffiliatorWhereInput No
orderBy AffiliatorOrderByWithRelationInput[] | AffiliatorOrderByWithRelationInput No
cursor AffiliatorWhereUniqueInput No
take Int No
skip Int No
distinct AffiliatorScalarFieldEnum | AffiliatorScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Affiliator

// Create one Affiliator
const Affiliator = await prisma.affiliator.create({
  data: {
    // ... data to create a Affiliator
  }
})

Input

Name Type Required
data AffiliatorCreateInput | AffiliatorUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Affiliator

// Delete one Affiliator
const Affiliator = await prisma.affiliator.delete({
  where: {
    // ... filter to delete one Affiliator
  }
})

Input

Name Type Required
where AffiliatorWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Affiliator

// Update one Affiliator
const affiliator = await prisma.affiliator.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AffiliatorUpdateInput | AffiliatorUncheckedUpdateInput Yes
where AffiliatorWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Affiliator

// Delete a few Affiliator
const { count } = await prisma.affiliator.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AffiliatorWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Affiliator

const { count } = await prisma.affiliator.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AffiliatorUpdateManyMutationInput | AffiliatorUncheckedUpdateManyInput Yes
where AffiliatorWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Affiliator

// Update or create a Affiliator
const affiliator = await prisma.affiliator.upsert({
  create: {
    // ... data to create a Affiliator
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Affiliator we want to update
  }
})

Input

Name Type Required
where AffiliatorWhereUniqueInput Yes
create AffiliatorCreateInput | AffiliatorUncheckedCreateInput Yes
update AffiliatorUpdateInput | AffiliatorUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Affiliator_Commission

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
uuid String
  • @unique
Yes -
affiliator_id Int
  • -
Yes -
user_id Int
  • -
Yes -
order_id Int?
  • -
No -
shop_id Int?
  • -
No -
coupon_id Int?
  • -
No -
coupon_code String?
  • -
No -
order_amout Decimal?
  • -
No -
coupon_discount_type DiscountType?
  • @default(FLAT)
No -
coupon_discount_value Decimal?
  • -
No -
commission_type DiscountType
  • @default(FLAT)
Yes -
commission_value Decimal
  • -
Yes -
amount Decimal
  • -
Yes -
status CommissionStatus
  • @default(APPROVED)
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • @updatedAt
Yes -
affiliator Affiliator?
  • -
No -
user User?
  • -
No -
order Order?
  • -
No -
shop Shop?
  • -
No -
coupon Coupon?
  • -
No -

Operations

findUnique

Find zero or one Affiliator_Commission

// Get one Affiliator_Commission
const affiliator_Commission = await prisma.affiliator_Commission.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Affiliator_CommissionWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Affiliator_Commission

// Get one Affiliator_Commission
const affiliator_Commission = await prisma.affiliator_Commission.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Affiliator_CommissionWhereInput No
orderBy Affiliator_CommissionOrderByWithRelationInput[] | Affiliator_CommissionOrderByWithRelationInput No
cursor Affiliator_CommissionWhereUniqueInput No
take Int No
skip Int No
distinct Affiliator_CommissionScalarFieldEnum | Affiliator_CommissionScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Affiliator_Commission

// Get all Affiliator_Commission
const Affiliator_Commission = await prisma.affiliator_Commission.findMany()
// Get first 10 Affiliator_Commission
const Affiliator_Commission = await prisma.affiliator_Commission.findMany({ take: 10 })

Input

Name Type Required
where Affiliator_CommissionWhereInput No
orderBy Affiliator_CommissionOrderByWithRelationInput[] | Affiliator_CommissionOrderByWithRelationInput No
cursor Affiliator_CommissionWhereUniqueInput No
take Int No
skip Int No
distinct Affiliator_CommissionScalarFieldEnum | Affiliator_CommissionScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Affiliator_Commission

// Create one Affiliator_Commission
const Affiliator_Commission = await prisma.affiliator_Commission.create({
  data: {
    // ... data to create a Affiliator_Commission
  }
})

Input

Name Type Required
data Affiliator_CommissionCreateInput | Affiliator_CommissionUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Affiliator_Commission

// Delete one Affiliator_Commission
const Affiliator_Commission = await prisma.affiliator_Commission.delete({
  where: {
    // ... filter to delete one Affiliator_Commission
  }
})

Input

Name Type Required
where Affiliator_CommissionWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Affiliator_Commission

// Update one Affiliator_Commission
const affiliator_Commission = await prisma.affiliator_Commission.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Affiliator_CommissionUpdateInput | Affiliator_CommissionUncheckedUpdateInput Yes
where Affiliator_CommissionWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Affiliator_Commission

// Delete a few Affiliator_Commission
const { count } = await prisma.affiliator_Commission.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Affiliator_CommissionWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Affiliator_Commission

const { count } = await prisma.affiliator_Commission.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Affiliator_CommissionUpdateManyMutationInput | Affiliator_CommissionUncheckedUpdateManyInput Yes
where Affiliator_CommissionWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Affiliator_Commission

// Update or create a Affiliator_Commission
const affiliator_Commission = await prisma.affiliator_Commission.upsert({
  create: {
    // ... data to create a Affiliator_Commission
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Affiliator_Commission we want to update
  }
})

Input

Name Type Required
where Affiliator_CommissionWhereUniqueInput Yes
create Affiliator_CommissionCreateInput | Affiliator_CommissionUncheckedCreateInput Yes
update Affiliator_CommissionUpdateInput | Affiliator_CommissionUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Affiliator_Withdraw_Request

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
uuid String
  • @unique
Yes -
affiliator_id Int
  • -
Yes -
status CommissionWithdrawStatus
  • @default(PENDING)
Yes -
amount Decimal
  • -
Yes -
payment_method_id Int
  • -
Yes -
payment_method PaymentMethod
  • -
Yes -
payment_method_details Json
  • -
Yes -
assignee Int?
  • -
No -
note String?
  • -
No -
reject_reason String?
  • -
No -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • @updatedAt
Yes -
affiliator Affiliator?
  • -
No -
payment_method_detail User_Pament_Method?
  • -
No -
assigned_user User?
  • -
No -

Operations

findUnique

Find zero or one Affiliator_Withdraw_Request

// Get one Affiliator_Withdraw_Request
const affiliator_Withdraw_Request = await prisma.affiliator_Withdraw_Request.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Affiliator_Withdraw_RequestWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Affiliator_Withdraw_Request

// Get one Affiliator_Withdraw_Request
const affiliator_Withdraw_Request = await prisma.affiliator_Withdraw_Request.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Affiliator_Withdraw_RequestWhereInput No
orderBy Affiliator_Withdraw_RequestOrderByWithRelationInput[] | Affiliator_Withdraw_RequestOrderByWithRelationInput No
cursor Affiliator_Withdraw_RequestWhereUniqueInput No
take Int No
skip Int No
distinct Affiliator_Withdraw_RequestScalarFieldEnum | Affiliator_Withdraw_RequestScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Affiliator_Withdraw_Request

// Get all Affiliator_Withdraw_Request
const Affiliator_Withdraw_Request = await prisma.affiliator_Withdraw_Request.findMany()
// Get first 10 Affiliator_Withdraw_Request
const Affiliator_Withdraw_Request = await prisma.affiliator_Withdraw_Request.findMany({ take: 10 })

Input

Name Type Required
where Affiliator_Withdraw_RequestWhereInput No
orderBy Affiliator_Withdraw_RequestOrderByWithRelationInput[] | Affiliator_Withdraw_RequestOrderByWithRelationInput No
cursor Affiliator_Withdraw_RequestWhereUniqueInput No
take Int No
skip Int No
distinct Affiliator_Withdraw_RequestScalarFieldEnum | Affiliator_Withdraw_RequestScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Affiliator_Withdraw_Request

// Create one Affiliator_Withdraw_Request
const Affiliator_Withdraw_Request = await prisma.affiliator_Withdraw_Request.create({
  data: {
    // ... data to create a Affiliator_Withdraw_Request
  }
})

Input

Name Type Required
data Affiliator_Withdraw_RequestCreateInput | Affiliator_Withdraw_RequestUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Affiliator_Withdraw_Request

// Delete one Affiliator_Withdraw_Request
const Affiliator_Withdraw_Request = await prisma.affiliator_Withdraw_Request.delete({
  where: {
    // ... filter to delete one Affiliator_Withdraw_Request
  }
})

Input

Name Type Required
where Affiliator_Withdraw_RequestWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Affiliator_Withdraw_Request

// Update one Affiliator_Withdraw_Request
const affiliator_Withdraw_Request = await prisma.affiliator_Withdraw_Request.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Affiliator_Withdraw_RequestUpdateInput | Affiliator_Withdraw_RequestUncheckedUpdateInput Yes
where Affiliator_Withdraw_RequestWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Affiliator_Withdraw_Request

// Delete a few Affiliator_Withdraw_Request
const { count } = await prisma.affiliator_Withdraw_Request.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Affiliator_Withdraw_RequestWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Affiliator_Withdraw_Request

const { count } = await prisma.affiliator_Withdraw_Request.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Affiliator_Withdraw_RequestUpdateManyMutationInput | Affiliator_Withdraw_RequestUncheckedUpdateManyInput Yes
where Affiliator_Withdraw_RequestWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Affiliator_Withdraw_Request

// Update or create a Affiliator_Withdraw_Request
const affiliator_Withdraw_Request = await prisma.affiliator_Withdraw_Request.upsert({
  create: {
    // ... data to create a Affiliator_Withdraw_Request
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Affiliator_Withdraw_Request we want to update
  }
})

Input

Name Type Required
where Affiliator_Withdraw_RequestWhereUniqueInput Yes
create Affiliator_Withdraw_RequestCreateInput | Affiliator_Withdraw_RequestUncheckedCreateInput Yes
update Affiliator_Withdraw_RequestUpdateInput | Affiliator_Withdraw_RequestUncheckedUpdateInput Yes

Output

Required: Yes
List: No

User_Pament_Method

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
user_id Int
  • -
Yes -
method PaymentMethod
  • -
Yes -
details Json
  • -
Yes -
is_default Boolean
  • @default(false)
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • @updatedAt
Yes -
deleted_at DateTime?
  • -
No -
user User?
  • -
No -
affiliator_withdraw_requests Affiliator_Withdraw_Request[]
  • -
Yes -

Operations

findUnique

Find zero or one User_Pament_Method

// Get one User_Pament_Method
const user_Pament_Method = await prisma.user_Pament_Method.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where User_Pament_MethodWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first User_Pament_Method

// Get one User_Pament_Method
const user_Pament_Method = await prisma.user_Pament_Method.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where User_Pament_MethodWhereInput No
orderBy User_Pament_MethodOrderByWithRelationInput[] | User_Pament_MethodOrderByWithRelationInput No
cursor User_Pament_MethodWhereUniqueInput No
take Int No
skip Int No
distinct User_Pament_MethodScalarFieldEnum | User_Pament_MethodScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more User_Pament_Method

// Get all User_Pament_Method
const User_Pament_Method = await prisma.user_Pament_Method.findMany()
// Get first 10 User_Pament_Method
const User_Pament_Method = await prisma.user_Pament_Method.findMany({ take: 10 })

Input

Name Type Required
where User_Pament_MethodWhereInput No
orderBy User_Pament_MethodOrderByWithRelationInput[] | User_Pament_MethodOrderByWithRelationInput No
cursor User_Pament_MethodWhereUniqueInput No
take Int No
skip Int No
distinct User_Pament_MethodScalarFieldEnum | User_Pament_MethodScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one User_Pament_Method

// Create one User_Pament_Method
const User_Pament_Method = await prisma.user_Pament_Method.create({
  data: {
    // ... data to create a User_Pament_Method
  }
})

Input

Name Type Required
data User_Pament_MethodCreateInput | User_Pament_MethodUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one User_Pament_Method

// Delete one User_Pament_Method
const User_Pament_Method = await prisma.user_Pament_Method.delete({
  where: {
    // ... filter to delete one User_Pament_Method
  }
})

Input

Name Type Required
where User_Pament_MethodWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one User_Pament_Method

// Update one User_Pament_Method
const user_Pament_Method = await prisma.user_Pament_Method.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data User_Pament_MethodUpdateInput | User_Pament_MethodUncheckedUpdateInput Yes
where User_Pament_MethodWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more User_Pament_Method

// Delete a few User_Pament_Method
const { count } = await prisma.user_Pament_Method.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where User_Pament_MethodWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one User_Pament_Method

const { count } = await prisma.user_Pament_Method.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data User_Pament_MethodUpdateManyMutationInput | User_Pament_MethodUncheckedUpdateManyInput Yes
where User_Pament_MethodWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one User_Pament_Method

// Update or create a User_Pament_Method
const user_Pament_Method = await prisma.user_Pament_Method.upsert({
  create: {
    // ... data to create a User_Pament_Method
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the User_Pament_Method we want to update
  }
})

Input

Name Type Required
where User_Pament_MethodWhereUniqueInput Yes
create User_Pament_MethodCreateInput | User_Pament_MethodUncheckedCreateInput Yes
update User_Pament_MethodUpdateInput | User_Pament_MethodUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Pricing_Plan

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
name String
  • -
Yes -
tagline String
  • -
Yes -
description String
  • -
Yes -
type PricingPlanType
  • @unique
Yes -
price Decimal
  • -
Yes -
discounted_price Decimal?
  • -
No -
yearly_discounted_price Decimal?
  • -
No -
trial_period Int?
  • -
No -
user_id Int
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • @updatedAt
Yes -
deleted_at DateTime?
  • -
No -
deleted_by Int?
  • -
No -
user User?
  • -
No -
subscriptions Shop_Subscription[]
  • -
Yes -
pricing_plan_features Pricing_Plan_Feature[]
  • -
Yes -

Operations

findUnique

Find zero or one Pricing_Plan

// Get one Pricing_Plan
const pricing_Plan = await prisma.pricing_Plan.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Pricing_PlanWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Pricing_Plan

// Get one Pricing_Plan
const pricing_Plan = await prisma.pricing_Plan.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Pricing_PlanWhereInput No
orderBy Pricing_PlanOrderByWithRelationInput[] | Pricing_PlanOrderByWithRelationInput No
cursor Pricing_PlanWhereUniqueInput No
take Int No
skip Int No
distinct Pricing_PlanScalarFieldEnum | Pricing_PlanScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Pricing_Plan

// Get all Pricing_Plan
const Pricing_Plan = await prisma.pricing_Plan.findMany()
// Get first 10 Pricing_Plan
const Pricing_Plan = await prisma.pricing_Plan.findMany({ take: 10 })

Input

Name Type Required
where Pricing_PlanWhereInput No
orderBy Pricing_PlanOrderByWithRelationInput[] | Pricing_PlanOrderByWithRelationInput No
cursor Pricing_PlanWhereUniqueInput No
take Int No
skip Int No
distinct Pricing_PlanScalarFieldEnum | Pricing_PlanScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Pricing_Plan

// Create one Pricing_Plan
const Pricing_Plan = await prisma.pricing_Plan.create({
  data: {
    // ... data to create a Pricing_Plan
  }
})

Input

Name Type Required
data Pricing_PlanCreateInput | Pricing_PlanUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Pricing_Plan

// Delete one Pricing_Plan
const Pricing_Plan = await prisma.pricing_Plan.delete({
  where: {
    // ... filter to delete one Pricing_Plan
  }
})

Input

Name Type Required
where Pricing_PlanWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Pricing_Plan

// Update one Pricing_Plan
const pricing_Plan = await prisma.pricing_Plan.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Pricing_PlanUpdateInput | Pricing_PlanUncheckedUpdateInput Yes
where Pricing_PlanWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Pricing_Plan

// Delete a few Pricing_Plan
const { count } = await prisma.pricing_Plan.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Pricing_PlanWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Pricing_Plan

const { count } = await prisma.pricing_Plan.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Pricing_PlanUpdateManyMutationInput | Pricing_PlanUncheckedUpdateManyInput Yes
where Pricing_PlanWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Pricing_Plan

// Update or create a Pricing_Plan
const pricing_Plan = await prisma.pricing_Plan.upsert({
  create: {
    // ... data to create a Pricing_Plan
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Pricing_Plan we want to update
  }
})

Input

Name Type Required
where Pricing_PlanWhereUniqueInput Yes
create Pricing_PlanCreateInput | Pricing_PlanUncheckedCreateInput Yes
update Pricing_PlanUpdateInput | Pricing_PlanUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Pricing_Plan_Feature

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
plan_id Int
  • -
Yes -
title String
  • -
Yes -
type String?
  • -
No -
description String?
  • -
No -
pricing_plan Pricing_Plan?
  • -
No -

Operations

findUnique

Find zero or one Pricing_Plan_Feature

// Get one Pricing_Plan_Feature
const pricing_Plan_Feature = await prisma.pricing_Plan_Feature.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Pricing_Plan_FeatureWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Pricing_Plan_Feature

// Get one Pricing_Plan_Feature
const pricing_Plan_Feature = await prisma.pricing_Plan_Feature.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Pricing_Plan_FeatureWhereInput No
orderBy Pricing_Plan_FeatureOrderByWithRelationInput[] | Pricing_Plan_FeatureOrderByWithRelationInput No
cursor Pricing_Plan_FeatureWhereUniqueInput No
take Int No
skip Int No
distinct Pricing_Plan_FeatureScalarFieldEnum | Pricing_Plan_FeatureScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Pricing_Plan_Feature

// Get all Pricing_Plan_Feature
const Pricing_Plan_Feature = await prisma.pricing_Plan_Feature.findMany()
// Get first 10 Pricing_Plan_Feature
const Pricing_Plan_Feature = await prisma.pricing_Plan_Feature.findMany({ take: 10 })

Input

Name Type Required
where Pricing_Plan_FeatureWhereInput No
orderBy Pricing_Plan_FeatureOrderByWithRelationInput[] | Pricing_Plan_FeatureOrderByWithRelationInput No
cursor Pricing_Plan_FeatureWhereUniqueInput No
take Int No
skip Int No
distinct Pricing_Plan_FeatureScalarFieldEnum | Pricing_Plan_FeatureScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Pricing_Plan_Feature

// Create one Pricing_Plan_Feature
const Pricing_Plan_Feature = await prisma.pricing_Plan_Feature.create({
  data: {
    // ... data to create a Pricing_Plan_Feature
  }
})

Input

Name Type Required
data Pricing_Plan_FeatureCreateInput | Pricing_Plan_FeatureUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Pricing_Plan_Feature

// Delete one Pricing_Plan_Feature
const Pricing_Plan_Feature = await prisma.pricing_Plan_Feature.delete({
  where: {
    // ... filter to delete one Pricing_Plan_Feature
  }
})

Input

Name Type Required
where Pricing_Plan_FeatureWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Pricing_Plan_Feature

// Update one Pricing_Plan_Feature
const pricing_Plan_Feature = await prisma.pricing_Plan_Feature.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Pricing_Plan_FeatureUpdateInput | Pricing_Plan_FeatureUncheckedUpdateInput Yes
where Pricing_Plan_FeatureWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Pricing_Plan_Feature

// Delete a few Pricing_Plan_Feature
const { count } = await prisma.pricing_Plan_Feature.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Pricing_Plan_FeatureWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Pricing_Plan_Feature

const { count } = await prisma.pricing_Plan_Feature.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Pricing_Plan_FeatureUpdateManyMutationInput | Pricing_Plan_FeatureUncheckedUpdateManyInput Yes
where Pricing_Plan_FeatureWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Pricing_Plan_Feature

// Update or create a Pricing_Plan_Feature
const pricing_Plan_Feature = await prisma.pricing_Plan_Feature.upsert({
  create: {
    // ... data to create a Pricing_Plan_Feature
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Pricing_Plan_Feature we want to update
  }
})

Input

Name Type Required
where Pricing_Plan_FeatureWhereUniqueInput Yes
create Pricing_Plan_FeatureCreateInput | Pricing_Plan_FeatureUncheckedCreateInput Yes
update Pricing_Plan_FeatureUpdateInput | Pricing_Plan_FeatureUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Shop_Subscription

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
uuid String
  • @unique
Yes -
shop_id Int
  • -
Yes -
plan_id Int
  • -
Yes -
plan_type PricingPlanType
  • @default(FREE)
Yes -
status SubscriptionStatus
  • @default(PENDING)
Yes -
created_at DateTime
  • @default(now())
Yes -
ended_at DateTime?
  • -
No -
ended_type SubscriptionEndedType?
  • -
No -
updated_at DateTime
  • @updatedAt
Yes -
amount Decimal
  • -
Yes -
payment_method PaymentMethod
  • @default(SHOPIFY)
Yes -
plan Pricing_Plan?
  • -
No -
shops Shop[]
  • -
Yes -

Operations

findUnique

Find zero or one Shop_Subscription

// Get one Shop_Subscription
const shop_Subscription = await prisma.shop_Subscription.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Shop_SubscriptionWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Shop_Subscription

// Get one Shop_Subscription
const shop_Subscription = await prisma.shop_Subscription.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Shop_SubscriptionWhereInput No
orderBy Shop_SubscriptionOrderByWithRelationInput[] | Shop_SubscriptionOrderByWithRelationInput No
cursor Shop_SubscriptionWhereUniqueInput No
take Int No
skip Int No
distinct Shop_SubscriptionScalarFieldEnum | Shop_SubscriptionScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Shop_Subscription

// Get all Shop_Subscription
const Shop_Subscription = await prisma.shop_Subscription.findMany()
// Get first 10 Shop_Subscription
const Shop_Subscription = await prisma.shop_Subscription.findMany({ take: 10 })

Input

Name Type Required
where Shop_SubscriptionWhereInput No
orderBy Shop_SubscriptionOrderByWithRelationInput[] | Shop_SubscriptionOrderByWithRelationInput No
cursor Shop_SubscriptionWhereUniqueInput No
take Int No
skip Int No
distinct Shop_SubscriptionScalarFieldEnum | Shop_SubscriptionScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Shop_Subscription

// Create one Shop_Subscription
const Shop_Subscription = await prisma.shop_Subscription.create({
  data: {
    // ... data to create a Shop_Subscription
  }
})

Input

Name Type Required
data Shop_SubscriptionCreateInput | Shop_SubscriptionUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Shop_Subscription

// Delete one Shop_Subscription
const Shop_Subscription = await prisma.shop_Subscription.delete({
  where: {
    // ... filter to delete one Shop_Subscription
  }
})

Input

Name Type Required
where Shop_SubscriptionWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Shop_Subscription

// Update one Shop_Subscription
const shop_Subscription = await prisma.shop_Subscription.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Shop_SubscriptionUpdateInput | Shop_SubscriptionUncheckedUpdateInput Yes
where Shop_SubscriptionWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Shop_Subscription

// Delete a few Shop_Subscription
const { count } = await prisma.shop_Subscription.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Shop_SubscriptionWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Shop_Subscription

const { count } = await prisma.shop_Subscription.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Shop_SubscriptionUpdateManyMutationInput | Shop_SubscriptionUncheckedUpdateManyInput Yes
where Shop_SubscriptionWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Shop_Subscription

// Update or create a Shop_Subscription
const shop_Subscription = await prisma.shop_Subscription.upsert({
  create: {
    // ... data to create a Shop_Subscription
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Shop_Subscription we want to update
  }
})

Input

Name Type Required
where Shop_SubscriptionWhereUniqueInput Yes
create Shop_SubscriptionCreateInput | Shop_SubscriptionUncheckedCreateInput Yes
update Shop_SubscriptionUpdateInput | Shop_SubscriptionUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Faq

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
user_id Int
  • -
Yes -
question String
  • -
Yes -
answer String
  • -
Yes -
status FaqStatus
  • @default(DRAFT)
Yes -
category_id Int
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • @updatedAt
Yes -
deleted_at DateTime?
  • -
No -
deleted_by Int?
  • -
No -
user User?
  • -
No -
category Faq_Category?
  • -
No -

Operations

findUnique

Find zero or one Faq

// Get one Faq
const faq = await prisma.faq.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FaqWhereUniqueInput Yes

Output

Type: Faq
Required: No
List: No

findFirst

Find first Faq

// Get one Faq
const faq = await prisma.faq.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FaqWhereInput No
orderBy FaqOrderByWithRelationInput[] | FaqOrderByWithRelationInput No
cursor FaqWhereUniqueInput No
take Int No
skip Int No
distinct FaqScalarFieldEnum | FaqScalarFieldEnum[] No

Output

Type: Faq
Required: No
List: No

findMany

Find zero or more Faq

// Get all Faq
const Faq = await prisma.faq.findMany()
// Get first 10 Faq
const Faq = await prisma.faq.findMany({ take: 10 })

Input

Name Type Required
where FaqWhereInput No
orderBy FaqOrderByWithRelationInput[] | FaqOrderByWithRelationInput No
cursor FaqWhereUniqueInput No
take Int No
skip Int No
distinct FaqScalarFieldEnum | FaqScalarFieldEnum[] No

Output

Type: Faq
Required: Yes
List: Yes

create

Create one Faq

// Create one Faq
const Faq = await prisma.faq.create({
  data: {
    // ... data to create a Faq
  }
})

Input

Name Type Required
data FaqCreateInput | FaqUncheckedCreateInput Yes

Output

Type: Faq
Required: Yes
List: No

delete

Delete one Faq

// Delete one Faq
const Faq = await prisma.faq.delete({
  where: {
    // ... filter to delete one Faq
  }
})

Input

Name Type Required
where FaqWhereUniqueInput Yes

Output

Type: Faq
Required: No
List: No

update

Update one Faq

// Update one Faq
const faq = await prisma.faq.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FaqUpdateInput | FaqUncheckedUpdateInput Yes
where FaqWhereUniqueInput Yes

Output

Type: Faq
Required: No
List: No

deleteMany

Delete zero or more Faq

// Delete a few Faq
const { count } = await prisma.faq.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where FaqWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Faq

const { count } = await prisma.faq.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data FaqUpdateManyMutationInput | FaqUncheckedUpdateManyInput Yes
where FaqWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Faq

// Update or create a Faq
const faq = await prisma.faq.upsert({
  create: {
    // ... data to create a Faq
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Faq we want to update
  }
})

Input

Name Type Required
where FaqWhereUniqueInput Yes
create FaqCreateInput | FaqUncheckedCreateInput Yes
update FaqUpdateInput | FaqUncheckedUpdateInput Yes

Output

Type: Faq
Required: Yes
List: No

Faq_Category

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
name String
  • -
Yes -
user_id Int
  • -
Yes -
description String?
  • -
No -
banner String?
  • -
No -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • @updatedAt
Yes -
deleted_at DateTime?
  • -
No -
deleted_by Int?
  • -
No -
user User?
  • -
No -
faqs Faq[]
  • -
Yes -

Operations

findUnique

Find zero or one Faq_Category

// Get one Faq_Category
const faq_Category = await prisma.faq_Category.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Faq_CategoryWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Faq_Category

// Get one Faq_Category
const faq_Category = await prisma.faq_Category.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Faq_CategoryWhereInput No
orderBy Faq_CategoryOrderByWithRelationInput[] | Faq_CategoryOrderByWithRelationInput No
cursor Faq_CategoryWhereUniqueInput No
take Int No
skip Int No
distinct Faq_CategoryScalarFieldEnum | Faq_CategoryScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Faq_Category

// Get all Faq_Category
const Faq_Category = await prisma.faq_Category.findMany()
// Get first 10 Faq_Category
const Faq_Category = await prisma.faq_Category.findMany({ take: 10 })

Input

Name Type Required
where Faq_CategoryWhereInput No
orderBy Faq_CategoryOrderByWithRelationInput[] | Faq_CategoryOrderByWithRelationInput No
cursor Faq_CategoryWhereUniqueInput No
take Int No
skip Int No
distinct Faq_CategoryScalarFieldEnum | Faq_CategoryScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Faq_Category

// Create one Faq_Category
const Faq_Category = await prisma.faq_Category.create({
  data: {
    // ... data to create a Faq_Category
  }
})

Input

Name Type Required
data Faq_CategoryCreateInput | Faq_CategoryUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Faq_Category

// Delete one Faq_Category
const Faq_Category = await prisma.faq_Category.delete({
  where: {
    // ... filter to delete one Faq_Category
  }
})

Input

Name Type Required
where Faq_CategoryWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Faq_Category

// Update one Faq_Category
const faq_Category = await prisma.faq_Category.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Faq_CategoryUpdateInput | Faq_CategoryUncheckedUpdateInput Yes
where Faq_CategoryWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Faq_Category

// Delete a few Faq_Category
const { count } = await prisma.faq_Category.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Faq_CategoryWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Faq_Category

const { count } = await prisma.faq_Category.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Faq_CategoryUpdateManyMutationInput | Faq_CategoryUncheckedUpdateManyInput Yes
where Faq_CategoryWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Faq_Category

// Update or create a Faq_Category
const faq_Category = await prisma.faq_Category.upsert({
  create: {
    // ... data to create a Faq_Category
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Faq_Category we want to update
  }
})

Input

Name Type Required
where Faq_CategoryWhereUniqueInput Yes
create Faq_CategoryCreateInput | Faq_CategoryUncheckedCreateInput Yes
update Faq_CategoryUpdateInput | Faq_CategoryUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Attachment

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
uuid String
  • @unique
Yes -
url String
  • -
Yes -
type AttachmentType
  • @default(IMAGE)
Yes -
ref_id Int
  • -
Yes -
ref_type AttachmentRefType
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -

Operations

findUnique

Find zero or one Attachment

// Get one Attachment
const attachment = await prisma.attachment.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AttachmentWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Attachment

// Get one Attachment
const attachment = await prisma.attachment.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AttachmentWhereInput No
orderBy AttachmentOrderByWithRelationInput[] | AttachmentOrderByWithRelationInput No
cursor AttachmentWhereUniqueInput No
take Int No
skip Int No
distinct AttachmentScalarFieldEnum | AttachmentScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Attachment

// Get all Attachment
const Attachment = await prisma.attachment.findMany()
// Get first 10 Attachment
const Attachment = await prisma.attachment.findMany({ take: 10 })

Input

Name Type Required
where AttachmentWhereInput No
orderBy AttachmentOrderByWithRelationInput[] | AttachmentOrderByWithRelationInput No
cursor AttachmentWhereUniqueInput No
take Int No
skip Int No
distinct AttachmentScalarFieldEnum | AttachmentScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Attachment

// Create one Attachment
const Attachment = await prisma.attachment.create({
  data: {
    // ... data to create a Attachment
  }
})

Input

Name Type Required
data AttachmentCreateInput | AttachmentUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Attachment

// Delete one Attachment
const Attachment = await prisma.attachment.delete({
  where: {
    // ... filter to delete one Attachment
  }
})

Input

Name Type Required
where AttachmentWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Attachment

// Update one Attachment
const attachment = await prisma.attachment.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AttachmentUpdateInput | AttachmentUncheckedUpdateInput Yes
where AttachmentWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Attachment

// Delete a few Attachment
const { count } = await prisma.attachment.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where AttachmentWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Attachment

const { count } = await prisma.attachment.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data AttachmentUpdateManyMutationInput | AttachmentUncheckedUpdateManyInput Yes
where AttachmentWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Attachment

// Update or create a Attachment
const attachment = await prisma.attachment.upsert({
  create: {
    // ... data to create a Attachment
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Attachment we want to update
  }
})

Input

Name Type Required
where AttachmentWhereUniqueInput Yes
create AttachmentCreateInput | AttachmentUncheckedCreateInput Yes
update AttachmentUpdateInput | AttachmentUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Wishlist

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
shop_id Int
  • -
Yes -
element_id Int
  • -
Yes -
element_type ElementType
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -
shop Shop?
  • -
No -
element Element?
  • -
No -

Operations

findUnique

Find zero or one Wishlist

// Get one Wishlist
const wishlist = await prisma.wishlist.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where WishlistWhereUniqueInput Yes

Output

Type: Wishlist
Required: No
List: No

findFirst

Find first Wishlist

// Get one Wishlist
const wishlist = await prisma.wishlist.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where WishlistWhereInput No
orderBy WishlistOrderByWithRelationInput[] | WishlistOrderByWithRelationInput No
cursor WishlistWhereUniqueInput No
take Int No
skip Int No
distinct WishlistScalarFieldEnum | WishlistScalarFieldEnum[] No

Output

Type: Wishlist
Required: No
List: No

findMany

Find zero or more Wishlist

// Get all Wishlist
const Wishlist = await prisma.wishlist.findMany()
// Get first 10 Wishlist
const Wishlist = await prisma.wishlist.findMany({ take: 10 })

Input

Name Type Required
where WishlistWhereInput No
orderBy WishlistOrderByWithRelationInput[] | WishlistOrderByWithRelationInput No
cursor WishlistWhereUniqueInput No
take Int No
skip Int No
distinct WishlistScalarFieldEnum | WishlistScalarFieldEnum[] No

Output

Type: Wishlist
Required: Yes
List: Yes

create

Create one Wishlist

// Create one Wishlist
const Wishlist = await prisma.wishlist.create({
  data: {
    // ... data to create a Wishlist
  }
})

Input

Name Type Required
data WishlistCreateInput | WishlistUncheckedCreateInput Yes

Output

Type: Wishlist
Required: Yes
List: No

delete

Delete one Wishlist

// Delete one Wishlist
const Wishlist = await prisma.wishlist.delete({
  where: {
    // ... filter to delete one Wishlist
  }
})

Input

Name Type Required
where WishlistWhereUniqueInput Yes

Output

Type: Wishlist
Required: No
List: No

update

Update one Wishlist

// Update one Wishlist
const wishlist = await prisma.wishlist.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data WishlistUpdateInput | WishlistUncheckedUpdateInput Yes
where WishlistWhereUniqueInput Yes

Output

Type: Wishlist
Required: No
List: No

deleteMany

Delete zero or more Wishlist

// Delete a few Wishlist
const { count } = await prisma.wishlist.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where WishlistWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Wishlist

const { count } = await prisma.wishlist.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data WishlistUpdateManyMutationInput | WishlistUncheckedUpdateManyInput Yes
where WishlistWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Wishlist

// Update or create a Wishlist
const wishlist = await prisma.wishlist.upsert({
  create: {
    // ... data to create a Wishlist
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Wishlist we want to update
  }
})

Input

Name Type Required
where WishlistWhereUniqueInput Yes
create WishlistCreateInput | WishlistUncheckedCreateInput Yes
update WishlistUpdateInput | WishlistUncheckedUpdateInput Yes

Output

Type: Wishlist
Required: Yes
List: No

Bookmark

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
shop_id Int
  • -
Yes -
element_id Int
  • -
Yes -
element_type ElementType
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -
shop Shop?
  • -
No -
element Element?
  • -
No -

Operations

findUnique

Find zero or one Bookmark

// Get one Bookmark
const bookmark = await prisma.bookmark.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BookmarkWhereUniqueInput Yes

Output

Type: Bookmark
Required: No
List: No

findFirst

Find first Bookmark

// Get one Bookmark
const bookmark = await prisma.bookmark.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BookmarkWhereInput No
orderBy BookmarkOrderByWithRelationInput[] | BookmarkOrderByWithRelationInput No
cursor BookmarkWhereUniqueInput No
take Int No
skip Int No
distinct BookmarkScalarFieldEnum | BookmarkScalarFieldEnum[] No

Output

Type: Bookmark
Required: No
List: No

findMany

Find zero or more Bookmark

// Get all Bookmark
const Bookmark = await prisma.bookmark.findMany()
// Get first 10 Bookmark
const Bookmark = await prisma.bookmark.findMany({ take: 10 })

Input

Name Type Required
where BookmarkWhereInput No
orderBy BookmarkOrderByWithRelationInput[] | BookmarkOrderByWithRelationInput No
cursor BookmarkWhereUniqueInput No
take Int No
skip Int No
distinct BookmarkScalarFieldEnum | BookmarkScalarFieldEnum[] No

Output

Type: Bookmark
Required: Yes
List: Yes

create

Create one Bookmark

// Create one Bookmark
const Bookmark = await prisma.bookmark.create({
  data: {
    // ... data to create a Bookmark
  }
})

Input

Name Type Required
data BookmarkCreateInput | BookmarkUncheckedCreateInput Yes

Output

Type: Bookmark
Required: Yes
List: No

delete

Delete one Bookmark

// Delete one Bookmark
const Bookmark = await prisma.bookmark.delete({
  where: {
    // ... filter to delete one Bookmark
  }
})

Input

Name Type Required
where BookmarkWhereUniqueInput Yes

Output

Type: Bookmark
Required: No
List: No

update

Update one Bookmark

// Update one Bookmark
const bookmark = await prisma.bookmark.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BookmarkUpdateInput | BookmarkUncheckedUpdateInput Yes
where BookmarkWhereUniqueInput Yes

Output

Type: Bookmark
Required: No
List: No

deleteMany

Delete zero or more Bookmark

// Delete a few Bookmark
const { count } = await prisma.bookmark.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where BookmarkWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Bookmark

const { count } = await prisma.bookmark.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data BookmarkUpdateManyMutationInput | BookmarkUncheckedUpdateManyInput Yes
where BookmarkWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Bookmark

// Update or create a Bookmark
const bookmark = await prisma.bookmark.upsert({
  create: {
    // ... data to create a Bookmark
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Bookmark we want to update
  }
})

Input

Name Type Required
where BookmarkWhereUniqueInput Yes
create BookmarkCreateInput | BookmarkUncheckedCreateInput Yes
update BookmarkUpdateInput | BookmarkUncheckedUpdateInput Yes

Output

Type: Bookmark
Required: Yes
List: No

Recent_Used_Element

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
shop_id Int
  • -
Yes -
element_id Int
  • -
Yes -
element_type ElementType
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -
shop Shop?
  • -
No -
element Element?
  • -
No -

Operations

findUnique

Find zero or one Recent_Used_Element

// Get one Recent_Used_Element
const recent_Used_Element = await prisma.recent_Used_Element.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Recent_Used_ElementWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Recent_Used_Element

// Get one Recent_Used_Element
const recent_Used_Element = await prisma.recent_Used_Element.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Recent_Used_ElementWhereInput No
orderBy Recent_Used_ElementOrderByWithRelationInput[] | Recent_Used_ElementOrderByWithRelationInput No
cursor Recent_Used_ElementWhereUniqueInput No
take Int No
skip Int No
distinct Recent_Used_ElementScalarFieldEnum | Recent_Used_ElementScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Recent_Used_Element

// Get all Recent_Used_Element
const Recent_Used_Element = await prisma.recent_Used_Element.findMany()
// Get first 10 Recent_Used_Element
const Recent_Used_Element = await prisma.recent_Used_Element.findMany({ take: 10 })

Input

Name Type Required
where Recent_Used_ElementWhereInput No
orderBy Recent_Used_ElementOrderByWithRelationInput[] | Recent_Used_ElementOrderByWithRelationInput No
cursor Recent_Used_ElementWhereUniqueInput No
take Int No
skip Int No
distinct Recent_Used_ElementScalarFieldEnum | Recent_Used_ElementScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Recent_Used_Element

// Create one Recent_Used_Element
const Recent_Used_Element = await prisma.recent_Used_Element.create({
  data: {
    // ... data to create a Recent_Used_Element
  }
})

Input

Name Type Required
data Recent_Used_ElementCreateInput | Recent_Used_ElementUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Recent_Used_Element

// Delete one Recent_Used_Element
const Recent_Used_Element = await prisma.recent_Used_Element.delete({
  where: {
    // ... filter to delete one Recent_Used_Element
  }
})

Input

Name Type Required
where Recent_Used_ElementWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Recent_Used_Element

// Update one Recent_Used_Element
const recent_Used_Element = await prisma.recent_Used_Element.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Recent_Used_ElementUpdateInput | Recent_Used_ElementUncheckedUpdateInput Yes
where Recent_Used_ElementWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Recent_Used_Element

// Delete a few Recent_Used_Element
const { count } = await prisma.recent_Used_Element.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Recent_Used_ElementWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Recent_Used_Element

const { count } = await prisma.recent_Used_Element.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Recent_Used_ElementUpdateManyMutationInput | Recent_Used_ElementUncheckedUpdateManyInput Yes
where Recent_Used_ElementWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Recent_Used_Element

// Update or create a Recent_Used_Element
const recent_Used_Element = await prisma.recent_Used_Element.upsert({
  create: {
    // ... data to create a Recent_Used_Element
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Recent_Used_Element we want to update
  }
})

Input

Name Type Required
where Recent_Used_ElementWhereUniqueInput Yes
create Recent_Used_ElementCreateInput | Recent_Used_ElementUncheckedCreateInput Yes
update Recent_Used_ElementUpdateInput | Recent_Used_ElementUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Support_Ticket

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
uuid String
  • @unique
Yes -
user_id Int
  • -
Yes -
ref_id Int
  • -
Yes -
ref_type SupportRefType
  • -
Yes -
criteria SupportCriteria
  • -
Yes -
reason String
  • -
Yes -
description String
  • -
Yes -
status SupportStatus?
  • @default(PENDING)
No -
label SupportLabel?
  • @default(SEVERITY_1)
No -
assignee Int?
  • -
No -
assigned_at DateTime?
  • -
No -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • @updatedAt
Yes -
user User?
  • -
No -
ticket_messages Ticket_Message[]
  • -
Yes -

Operations

findUnique

Find zero or one Support_Ticket

// Get one Support_Ticket
const support_Ticket = await prisma.support_Ticket.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Support_TicketWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Support_Ticket

// Get one Support_Ticket
const support_Ticket = await prisma.support_Ticket.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Support_TicketWhereInput No
orderBy Support_TicketOrderByWithRelationInput[] | Support_TicketOrderByWithRelationInput No
cursor Support_TicketWhereUniqueInput No
take Int No
skip Int No
distinct Support_TicketScalarFieldEnum | Support_TicketScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Support_Ticket

// Get all Support_Ticket
const Support_Ticket = await prisma.support_Ticket.findMany()
// Get first 10 Support_Ticket
const Support_Ticket = await prisma.support_Ticket.findMany({ take: 10 })

Input

Name Type Required
where Support_TicketWhereInput No
orderBy Support_TicketOrderByWithRelationInput[] | Support_TicketOrderByWithRelationInput No
cursor Support_TicketWhereUniqueInput No
take Int No
skip Int No
distinct Support_TicketScalarFieldEnum | Support_TicketScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Support_Ticket

// Create one Support_Ticket
const Support_Ticket = await prisma.support_Ticket.create({
  data: {
    // ... data to create a Support_Ticket
  }
})

Input

Name Type Required
data Support_TicketCreateInput | Support_TicketUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Support_Ticket

// Delete one Support_Ticket
const Support_Ticket = await prisma.support_Ticket.delete({
  where: {
    // ... filter to delete one Support_Ticket
  }
})

Input

Name Type Required
where Support_TicketWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Support_Ticket

// Update one Support_Ticket
const support_Ticket = await prisma.support_Ticket.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Support_TicketUpdateInput | Support_TicketUncheckedUpdateInput Yes
where Support_TicketWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Support_Ticket

// Delete a few Support_Ticket
const { count } = await prisma.support_Ticket.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Support_TicketWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Support_Ticket

const { count } = await prisma.support_Ticket.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Support_TicketUpdateManyMutationInput | Support_TicketUncheckedUpdateManyInput Yes
where Support_TicketWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Support_Ticket

// Update or create a Support_Ticket
const support_Ticket = await prisma.support_Ticket.upsert({
  create: {
    // ... data to create a Support_Ticket
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Support_Ticket we want to update
  }
})

Input

Name Type Required
where Support_TicketWhereUniqueInput Yes
create Support_TicketCreateInput | Support_TicketUncheckedCreateInput Yes
update Support_TicketUpdateInput | Support_TicketUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Ticket_Message

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
ticket_id Int
  • -
Yes -
user_id Int
  • -
Yes -
message String
  • -
Yes -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • @updatedAt
Yes -
user User?
  • -
No -
support_ticket Support_Ticket?
  • -
No -

Operations

findUnique

Find zero or one Ticket_Message

// Get one Ticket_Message
const ticket_Message = await prisma.ticket_Message.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Ticket_MessageWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Ticket_Message

// Get one Ticket_Message
const ticket_Message = await prisma.ticket_Message.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Ticket_MessageWhereInput No
orderBy Ticket_MessageOrderByWithRelationInput[] | Ticket_MessageOrderByWithRelationInput No
cursor Ticket_MessageWhereUniqueInput No
take Int No
skip Int No
distinct Ticket_MessageScalarFieldEnum | Ticket_MessageScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Ticket_Message

// Get all Ticket_Message
const Ticket_Message = await prisma.ticket_Message.findMany()
// Get first 10 Ticket_Message
const Ticket_Message = await prisma.ticket_Message.findMany({ take: 10 })

Input

Name Type Required
where Ticket_MessageWhereInput No
orderBy Ticket_MessageOrderByWithRelationInput[] | Ticket_MessageOrderByWithRelationInput No
cursor Ticket_MessageWhereUniqueInput No
take Int No
skip Int No
distinct Ticket_MessageScalarFieldEnum | Ticket_MessageScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Ticket_Message

// Create one Ticket_Message
const Ticket_Message = await prisma.ticket_Message.create({
  data: {
    // ... data to create a Ticket_Message
  }
})

Input

Name Type Required
data Ticket_MessageCreateInput | Ticket_MessageUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Ticket_Message

// Delete one Ticket_Message
const Ticket_Message = await prisma.ticket_Message.delete({
  where: {
    // ... filter to delete one Ticket_Message
  }
})

Input

Name Type Required
where Ticket_MessageWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Ticket_Message

// Update one Ticket_Message
const ticket_Message = await prisma.ticket_Message.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Ticket_MessageUpdateInput | Ticket_MessageUncheckedUpdateInput Yes
where Ticket_MessageWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Ticket_Message

// Delete a few Ticket_Message
const { count } = await prisma.ticket_Message.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Ticket_MessageWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Ticket_Message

const { count } = await prisma.ticket_Message.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Ticket_MessageUpdateManyMutationInput | Ticket_MessageUncheckedUpdateManyInput Yes
where Ticket_MessageWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Ticket_Message

// Update or create a Ticket_Message
const ticket_Message = await prisma.ticket_Message.upsert({
  create: {
    // ... data to create a Ticket_Message
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Ticket_Message we want to update
  }
})

Input

Name Type Required
where Ticket_MessageWhereUniqueInput Yes
create Ticket_MessageCreateInput | Ticket_MessageUncheckedCreateInput Yes
update Ticket_MessageUpdateInput | Ticket_MessageUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Contact_Request

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
message String
  • -
Yes -
name String
  • -
Yes -
email String
  • @unique
Yes -
phone String
  • -
Yes -
country_code String
  • -
Yes -
country String?
  • -
No -
status ContactStatus?
  • @default(PENDING)
No -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • @updatedAt
Yes -

Operations

findUnique

Find zero or one Contact_Request

// Get one Contact_Request
const contact_Request = await prisma.contact_Request.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Contact_RequestWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Contact_Request

// Get one Contact_Request
const contact_Request = await prisma.contact_Request.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Contact_RequestWhereInput No
orderBy Contact_RequestOrderByWithRelationInput[] | Contact_RequestOrderByWithRelationInput No
cursor Contact_RequestWhereUniqueInput No
take Int No
skip Int No
distinct Contact_RequestScalarFieldEnum | Contact_RequestScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Contact_Request

// Get all Contact_Request
const Contact_Request = await prisma.contact_Request.findMany()
// Get first 10 Contact_Request
const Contact_Request = await prisma.contact_Request.findMany({ take: 10 })

Input

Name Type Required
where Contact_RequestWhereInput No
orderBy Contact_RequestOrderByWithRelationInput[] | Contact_RequestOrderByWithRelationInput No
cursor Contact_RequestWhereUniqueInput No
take Int No
skip Int No
distinct Contact_RequestScalarFieldEnum | Contact_RequestScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Contact_Request

// Create one Contact_Request
const Contact_Request = await prisma.contact_Request.create({
  data: {
    // ... data to create a Contact_Request
  }
})

Input

Name Type Required
data Contact_RequestCreateInput | Contact_RequestUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Contact_Request

// Delete one Contact_Request
const Contact_Request = await prisma.contact_Request.delete({
  where: {
    // ... filter to delete one Contact_Request
  }
})

Input

Name Type Required
where Contact_RequestWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Contact_Request

// Update one Contact_Request
const contact_Request = await prisma.contact_Request.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Contact_RequestUpdateInput | Contact_RequestUncheckedUpdateInput Yes
where Contact_RequestWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Contact_Request

// Delete a few Contact_Request
const { count } = await prisma.contact_Request.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Contact_RequestWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Contact_Request

const { count } = await prisma.contact_Request.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Contact_RequestUpdateManyMutationInput | Contact_RequestUncheckedUpdateManyInput Yes
where Contact_RequestWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Contact_Request

// Update or create a Contact_Request
const contact_Request = await prisma.contact_Request.upsert({
  create: {
    // ... data to create a Contact_Request
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Contact_Request we want to update
  }
})

Input

Name Type Required
where Contact_RequestWhereUniqueInput Yes
create Contact_RequestCreateInput | Contact_RequestUncheckedCreateInput Yes
update Contact_RequestUpdateInput | Contact_RequestUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Team_Member

Fields

Name Type Attributes Required Comment
id Int
  • @id
  • @default(autoincrement())
Yes -
user_id Int
  • -
Yes -
role TeamMemberRole
  • @default(MANAGER)
Yes -
designation String?
  • -
No -
badge String?
  • -
No -
invited_by Int?
  • -
No -
onboarded_at DateTime?
  • -
No -
created_at DateTime
  • @default(now())
Yes -
updated_at DateTime
  • @updatedAt
Yes -
user User?
  • -
No -

Operations

findUnique

Find zero or one Team_Member

// Get one Team_Member
const team_Member = await prisma.team_Member.findUnique({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Team_MemberWhereUniqueInput Yes

Output

Required: No
List: No

findFirst

Find first Team_Member

// Get one Team_Member
const team_Member = await prisma.team_Member.findFirst({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Team_MemberWhereInput No
orderBy Team_MemberOrderByWithRelationInput[] | Team_MemberOrderByWithRelationInput No
cursor Team_MemberWhereUniqueInput No
take Int No
skip Int No
distinct Team_MemberScalarFieldEnum | Team_MemberScalarFieldEnum[] No

Output

Required: No
List: No

findMany

Find zero or more Team_Member

// Get all Team_Member
const Team_Member = await prisma.team_Member.findMany()
// Get first 10 Team_Member
const Team_Member = await prisma.team_Member.findMany({ take: 10 })

Input

Name Type Required
where Team_MemberWhereInput No
orderBy Team_MemberOrderByWithRelationInput[] | Team_MemberOrderByWithRelationInput No
cursor Team_MemberWhereUniqueInput No
take Int No
skip Int No
distinct Team_MemberScalarFieldEnum | Team_MemberScalarFieldEnum[] No

Output

Required: Yes
List: Yes

create

Create one Team_Member

// Create one Team_Member
const Team_Member = await prisma.team_Member.create({
  data: {
    // ... data to create a Team_Member
  }
})

Input

Name Type Required
data Team_MemberCreateInput | Team_MemberUncheckedCreateInput Yes

Output

Required: Yes
List: No

delete

Delete one Team_Member

// Delete one Team_Member
const Team_Member = await prisma.team_Member.delete({
  where: {
    // ... filter to delete one Team_Member
  }
})

Input

Name Type Required
where Team_MemberWhereUniqueInput Yes

Output

Required: No
List: No

update

Update one Team_Member

// Update one Team_Member
const team_Member = await prisma.team_Member.update({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Team_MemberUpdateInput | Team_MemberUncheckedUpdateInput Yes
where Team_MemberWhereUniqueInput Yes

Output

Required: No
List: No

deleteMany

Delete zero or more Team_Member

// Delete a few Team_Member
const { count } = await prisma.team_Member.deleteMany({
  where: {
    // ... provide filter here
  }
})

Input

Name Type Required
where Team_MemberWhereInput No

Output

Required: Yes
List: No

updateMany

Update zero or one Team_Member

const { count } = await prisma.team_Member.updateMany({
  where: {
    // ... provide filter here
  },
  data: {
    // ... provide data here
  }
})

Input

Name Type Required
data Team_MemberUpdateManyMutationInput | Team_MemberUncheckedUpdateManyInput Yes
where Team_MemberWhereInput No

Output

Required: Yes
List: No

upsert

Create or update one Team_Member

// Update or create a Team_Member
const team_Member = await prisma.team_Member.upsert({
  create: {
    // ... data to create a Team_Member
  },
  update: {
    // ... in case it already exists, update
  },
  where: {
    // ... the filter for the Team_Member we want to update
  }
})

Input

Name Type Required
where Team_MemberWhereUniqueInput Yes
create Team_MemberCreateInput | Team_MemberUncheckedCreateInput Yes
update Team_MemberUpdateInput | Team_MemberUncheckedUpdateInput Yes

Output

Required: Yes
List: No

Types

Input Types

UserWhereInput

Name Type Nullable
AND UserWhereInput | UserWhereInput[] No
OR UserWhereInput[] No
NOT UserWhereInput | UserWhereInput[] No
id IntFilter | Int No
first_name StringFilter | String No
last_name StringFilter | String No
email StringFilter | String No
password StringNullableFilter | String | Null Yes
phone StringNullableFilter | String | Null Yes
profile_photo StringNullableFilter | String | Null Yes
role EnumUserRoleFilter | UserRole No
status EnumUserStatusNullableFilter | UserStatus | Null Yes
is_verified BoolNullableFilter | Boolean | Null Yes
is_shopify_user BoolNullableFilter | Boolean | Null Yes
date_of_birth DateTimeNullableFilter | DateTime | Null Yes
country_code StringNullableFilter | String | Null Yes
country StringNullableFilter | String | Null Yes
address StringNullableFilter | String | Null Yes
website_url StringNullableFilter | String | Null Yes
social_handles JsonNullableFilter No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
deleted_at DateTimeNullableFilter | DateTime | Null Yes
deleted_by IntNullableFilter | Int | Null Yes
shops ShopListRelationFilter No
bundles BundleListRelationFilter No
bundle_elements Bundle_ElementListRelationFilter No
elements ElementListRelationFilter No
pricing_plans Pricing_PlanListRelationFilter No
faqs FaqListRelationFilter No
faq_categories Faq_CategoryListRelationFilter No
categories CategoryListRelationFilter No
tags TagListRelationFilter No
support_tickets Support_TicketListRelationFilter No
ticket_messages Ticket_MessageListRelationFilter No
affiliators AffiliatorListRelationFilter No
affiliator_commissions Affiliator_CommissionListRelationFilter No
affiliator_withdraw_requests Affiliator_Withdraw_RequestListRelationFilter No
coupons CouponListRelationFilter No
user_pament_methods User_Pament_MethodListRelationFilter No
team_members Team_MemberListRelationFilter No

UserOrderByWithRelationInput

Name Type Nullable
id SortOrder No
first_name SortOrder No
last_name SortOrder No
email SortOrder No
password SortOrder | SortOrderInput No
phone SortOrder | SortOrderInput No
profile_photo SortOrder | SortOrderInput No
role SortOrder No
status SortOrder | SortOrderInput No
is_verified SortOrder | SortOrderInput No
is_shopify_user SortOrder | SortOrderInput No
date_of_birth SortOrder | SortOrderInput No
country_code SortOrder | SortOrderInput No
country SortOrder | SortOrderInput No
address SortOrder | SortOrderInput No
website_url SortOrder | SortOrderInput No
social_handles SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder | SortOrderInput No
deleted_by SortOrder | SortOrderInput No
shops ShopOrderByRelationAggregateInput No
bundles BundleOrderByRelationAggregateInput No
bundle_elements Bundle_ElementOrderByRelationAggregateInput No
elements ElementOrderByRelationAggregateInput No
pricing_plans Pricing_PlanOrderByRelationAggregateInput No
faqs FaqOrderByRelationAggregateInput No
faq_categories Faq_CategoryOrderByRelationAggregateInput No
categories CategoryOrderByRelationAggregateInput No
tags TagOrderByRelationAggregateInput No
support_tickets Support_TicketOrderByRelationAggregateInput No
ticket_messages Ticket_MessageOrderByRelationAggregateInput No
affiliators AffiliatorOrderByRelationAggregateInput No
affiliator_commissions Affiliator_CommissionOrderByRelationAggregateInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestOrderByRelationAggregateInput No
coupons CouponOrderByRelationAggregateInput No
user_pament_methods User_Pament_MethodOrderByRelationAggregateInput No
team_members Team_MemberOrderByRelationAggregateInput No

UserWhereUniqueInput

Name Type Nullable
id Int No
email String No

UserOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
first_name SortOrder No
last_name SortOrder No
email SortOrder No
password SortOrder | SortOrderInput No
phone SortOrder | SortOrderInput No
profile_photo SortOrder | SortOrderInput No
role SortOrder No
status SortOrder | SortOrderInput No
is_verified SortOrder | SortOrderInput No
is_shopify_user SortOrder | SortOrderInput No
date_of_birth SortOrder | SortOrderInput No
country_code SortOrder | SortOrderInput No
country SortOrder | SortOrderInput No
address SortOrder | SortOrderInput No
website_url SortOrder | SortOrderInput No
social_handles SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder | SortOrderInput No
deleted_by SortOrder | SortOrderInput No
_count UserCountOrderByAggregateInput No
_avg UserAvgOrderByAggregateInput No
_max UserMaxOrderByAggregateInput No
_min UserMinOrderByAggregateInput No
_sum UserSumOrderByAggregateInput No

UserScalarWhereWithAggregatesInput

Name Type Nullable
AND UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] No
OR UserScalarWhereWithAggregatesInput[] No
NOT UserScalarWhereWithAggregatesInput | UserScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
first_name StringWithAggregatesFilter | String No
last_name StringWithAggregatesFilter | String No
email StringWithAggregatesFilter | String No
password StringNullableWithAggregatesFilter | String | Null Yes
phone StringNullableWithAggregatesFilter | String | Null Yes
profile_photo StringNullableWithAggregatesFilter | String | Null Yes
role EnumUserRoleWithAggregatesFilter | UserRole No
status EnumUserStatusNullableWithAggregatesFilter | UserStatus | Null Yes
is_verified BoolNullableWithAggregatesFilter | Boolean | Null Yes
is_shopify_user BoolNullableWithAggregatesFilter | Boolean | Null Yes
date_of_birth DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
country_code StringNullableWithAggregatesFilter | String | Null Yes
country StringNullableWithAggregatesFilter | String | Null Yes
address StringNullableWithAggregatesFilter | String | Null Yes
website_url StringNullableWithAggregatesFilter | String | Null Yes
social_handles JsonNullableWithAggregatesFilter No
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No
deleted_at DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
deleted_by IntNullableWithAggregatesFilter | Int | Null Yes

ShopWhereInput

Name Type Nullable
AND ShopWhereInput | ShopWhereInput[] No
OR ShopWhereInput[] No
NOT ShopWhereInput | ShopWhereInput[] No
id IntFilter | Int No
uuid StringFilter | String No
user_id IntFilter | Int No
shopify_shop_id IntFilter | Int No
name StringFilter | String No
domain StringFilter | String No
status EnumShopStatusFilter | ShopStatus No
subscription_id IntNullableFilter | Int | Null Yes
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
user UserRelationFilter | UserWhereInput | Null Yes
current_subscription Shop_SubscriptionRelationFilter | Shop_SubscriptionWhereInput | Null Yes
orders OrderListRelationFilter No
bookmarked_elements BookmarkListRelationFilter No
wishlisted_elements WishlistListRelationFilter No
recent_used_elements Recent_Used_ElementListRelationFilter No
affiliator_commissions Affiliator_CommissionListRelationFilter No

ShopOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
user_id SortOrder No
shopify_shop_id SortOrder No
name SortOrder No
domain SortOrder No
status SortOrder No
subscription_id SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No
user UserOrderByWithRelationInput No
current_subscription Shop_SubscriptionOrderByWithRelationInput No
orders OrderOrderByRelationAggregateInput No
bookmarked_elements BookmarkOrderByRelationAggregateInput No
wishlisted_elements WishlistOrderByRelationAggregateInput No
recent_used_elements Recent_Used_ElementOrderByRelationAggregateInput No
affiliator_commissions Affiliator_CommissionOrderByRelationAggregateInput No

ShopWhereUniqueInput

Name Type Nullable
id Int No
uuid String No

ShopOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
user_id SortOrder No
shopify_shop_id SortOrder No
name SortOrder No
domain SortOrder No
status SortOrder No
subscription_id SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No
_count ShopCountOrderByAggregateInput No
_avg ShopAvgOrderByAggregateInput No
_max ShopMaxOrderByAggregateInput No
_min ShopMinOrderByAggregateInput No
_sum ShopSumOrderByAggregateInput No


ElementWhereInput

Name Type Nullable
AND ElementWhereInput | ElementWhereInput[] No
OR ElementWhereInput[] No
NOT ElementWhereInput | ElementWhereInput[] No
id IntFilter | Int No
name StringFilter | String No
slug StringFilter | String No
description StringFilter | String No
featured_image StringFilter | String No
content StringFilter | String No
file_name StringFilter | String No
status EnumGenericStatusFilter | GenericStatus No
type EnumElementTypeFilter | ElementType No
price DecimalFilter | Decimal No
discount_type EnumDiscountTypeNullableFilter | DiscountType | Null Yes
discount_value DecimalNullableFilter | Decimal | Null Yes
demo_url StringNullableFilter | String | Null Yes
video_url StringNullableFilter | String | Null Yes
version StringNullableFilter | String | Null Yes
user_id IntFilter | Int No
wishlisted_count IntNullableFilter | Int | Null Yes
bookmarked_count IntNullableFilter | Int | Null Yes
added_theme_count IntNullableFilter | Int | Null Yes
view_count IntNullableFilter | Int | Null Yes
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
deleted_at DateTimeNullableFilter | DateTime | Null Yes
deleted_by IntNullableFilter | Int | Null Yes
user UserRelationFilter | UserWhereInput | Null Yes
images Element_ImageListRelationFilter No
best_Uses Element_Best_UseListRelationFilter No
tags Element_TagListRelationFilter No
categories Element_CategoryListRelationFilter No
bundles Bundle_ElementListRelationFilter No
wishlisted_elements WishlistListRelationFilter No
bookmarked_elements BookmarkListRelationFilter No
recent_used_elements Recent_Used_ElementListRelationFilter No

ElementOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
slug SortOrder No
description SortOrder No
featured_image SortOrder No
content SortOrder No
file_name SortOrder No
status SortOrder No
type SortOrder No
price SortOrder No
discount_type SortOrder | SortOrderInput No
discount_value SortOrder | SortOrderInput No
demo_url SortOrder | SortOrderInput No
video_url SortOrder | SortOrderInput No
version SortOrder | SortOrderInput No
user_id SortOrder No
wishlisted_count SortOrder | SortOrderInput No
bookmarked_count SortOrder | SortOrderInput No
added_theme_count SortOrder | SortOrderInput No
view_count SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder | SortOrderInput No
deleted_by SortOrder | SortOrderInput No
user UserOrderByWithRelationInput No
images Element_ImageOrderByRelationAggregateInput No
best_Uses Element_Best_UseOrderByRelationAggregateInput No
tags Element_TagOrderByRelationAggregateInput No
categories Element_CategoryOrderByRelationAggregateInput No
bundles Bundle_ElementOrderByRelationAggregateInput No
wishlisted_elements WishlistOrderByRelationAggregateInput No
bookmarked_elements BookmarkOrderByRelationAggregateInput No
recent_used_elements Recent_Used_ElementOrderByRelationAggregateInput No

ElementWhereUniqueInput

Name Type Nullable
id Int No
slug String No
file_name String No

ElementOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
slug SortOrder No
description SortOrder No
featured_image SortOrder No
content SortOrder No
file_name SortOrder No
status SortOrder No
type SortOrder No
price SortOrder No
discount_type SortOrder | SortOrderInput No
discount_value SortOrder | SortOrderInput No
demo_url SortOrder | SortOrderInput No
video_url SortOrder | SortOrderInput No
version SortOrder | SortOrderInput No
user_id SortOrder No
wishlisted_count SortOrder | SortOrderInput No
bookmarked_count SortOrder | SortOrderInput No
added_theme_count SortOrder | SortOrderInput No
view_count SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder | SortOrderInput No
deleted_by SortOrder | SortOrderInput No
_count ElementCountOrderByAggregateInput No
_avg ElementAvgOrderByAggregateInput No
_max ElementMaxOrderByAggregateInput No
_min ElementMinOrderByAggregateInput No
_sum ElementSumOrderByAggregateInput No

ElementScalarWhereWithAggregatesInput

Name Type Nullable
AND ElementScalarWhereWithAggregatesInput | ElementScalarWhereWithAggregatesInput[] No
OR ElementScalarWhereWithAggregatesInput[] No
NOT ElementScalarWhereWithAggregatesInput | ElementScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
name StringWithAggregatesFilter | String No
slug StringWithAggregatesFilter | String No
description StringWithAggregatesFilter | String No
featured_image StringWithAggregatesFilter | String No
content StringWithAggregatesFilter | String No
file_name StringWithAggregatesFilter | String No
status EnumGenericStatusWithAggregatesFilter | GenericStatus No
type EnumElementTypeWithAggregatesFilter | ElementType No
price DecimalWithAggregatesFilter | Decimal No
discount_type EnumDiscountTypeNullableWithAggregatesFilter | DiscountType | Null Yes
discount_value DecimalNullableWithAggregatesFilter | Decimal | Null Yes
demo_url StringNullableWithAggregatesFilter | String | Null Yes
video_url StringNullableWithAggregatesFilter | String | Null Yes
version StringNullableWithAggregatesFilter | String | Null Yes
user_id IntWithAggregatesFilter | Int No
wishlisted_count IntNullableWithAggregatesFilter | Int | Null Yes
bookmarked_count IntNullableWithAggregatesFilter | Int | Null Yes
added_theme_count IntNullableWithAggregatesFilter | Int | Null Yes
view_count IntNullableWithAggregatesFilter | Int | Null Yes
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No
deleted_at DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
deleted_by IntNullableWithAggregatesFilter | Int | Null Yes

BundleWhereInput

Name Type Nullable
AND BundleWhereInput | BundleWhereInput[] No
OR BundleWhereInput[] No
NOT BundleWhereInput | BundleWhereInput[] No
id IntFilter | Int No
name StringFilter | String No
slug StringFilter | String No
description StringFilter | String No
featured_image StringFilter | String No
status EnumGenericStatusFilter | GenericStatus No
type EnumBundleTypeFilter | BundleType No
is_auto_price BoolNullableFilter | Boolean | Null Yes
price DecimalFilter | Decimal No
discount_type EnumDiscountTypeNullableFilter | DiscountType | Null Yes
discount_value DecimalNullableFilter | Decimal | Null Yes
demo_url StringNullableFilter | String | Null Yes
video_url StringNullableFilter | String | Null Yes
version StringNullableFilter | String | Null Yes
user_id IntFilter | Int No
view_count IntNullableFilter | Int | Null Yes
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
deleted_at DateTimeNullableFilter | DateTime | Null Yes
deleted_by IntNullableFilter | Int | Null Yes
user UserRelationFilter | UserWhereInput | Null Yes
elements Bundle_ElementListRelationFilter No
images Bundle_ImageListRelationFilter No
categories Bundle_CategoryListRelationFilter No

BundleOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
slug SortOrder No
description SortOrder No
featured_image SortOrder No
status SortOrder No
type SortOrder No
is_auto_price SortOrder | SortOrderInput No
price SortOrder No
discount_type SortOrder | SortOrderInput No
discount_value SortOrder | SortOrderInput No
demo_url SortOrder | SortOrderInput No
video_url SortOrder | SortOrderInput No
version SortOrder | SortOrderInput No
user_id SortOrder No
view_count SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder | SortOrderInput No
deleted_by SortOrder | SortOrderInput No
user UserOrderByWithRelationInput No
elements Bundle_ElementOrderByRelationAggregateInput No
images Bundle_ImageOrderByRelationAggregateInput No
categories Bundle_CategoryOrderByRelationAggregateInput No

BundleWhereUniqueInput

Name Type Nullable
id Int No
slug String No

BundleOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
slug SortOrder No
description SortOrder No
featured_image SortOrder No
status SortOrder No
type SortOrder No
is_auto_price SortOrder | SortOrderInput No
price SortOrder No
discount_type SortOrder | SortOrderInput No
discount_value SortOrder | SortOrderInput No
demo_url SortOrder | SortOrderInput No
video_url SortOrder | SortOrderInput No
version SortOrder | SortOrderInput No
user_id SortOrder No
view_count SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder | SortOrderInput No
deleted_by SortOrder | SortOrderInput No
_count BundleCountOrderByAggregateInput No
_avg BundleAvgOrderByAggregateInput No
_max BundleMaxOrderByAggregateInput No
_min BundleMinOrderByAggregateInput No
_sum BundleSumOrderByAggregateInput No

BundleScalarWhereWithAggregatesInput

Name Type Nullable
AND BundleScalarWhereWithAggregatesInput | BundleScalarWhereWithAggregatesInput[] No
OR BundleScalarWhereWithAggregatesInput[] No
NOT BundleScalarWhereWithAggregatesInput | BundleScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
name StringWithAggregatesFilter | String No
slug StringWithAggregatesFilter | String No
description StringWithAggregatesFilter | String No
featured_image StringWithAggregatesFilter | String No
status EnumGenericStatusWithAggregatesFilter | GenericStatus No
type EnumBundleTypeWithAggregatesFilter | BundleType No
is_auto_price BoolNullableWithAggregatesFilter | Boolean | Null Yes
price DecimalWithAggregatesFilter | Decimal No
discount_type EnumDiscountTypeNullableWithAggregatesFilter | DiscountType | Null Yes
discount_value DecimalNullableWithAggregatesFilter | Decimal | Null Yes
demo_url StringNullableWithAggregatesFilter | String | Null Yes
video_url StringNullableWithAggregatesFilter | String | Null Yes
version StringNullableWithAggregatesFilter | String | Null Yes
user_id IntWithAggregatesFilter | Int No
view_count IntNullableWithAggregatesFilter | Int | Null Yes
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No
deleted_at DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
deleted_by IntNullableWithAggregatesFilter | Int | Null Yes

Bundle_ElementWhereInput

Name Type Nullable
AND Bundle_ElementWhereInput | Bundle_ElementWhereInput[] No
OR Bundle_ElementWhereInput[] No
NOT Bundle_ElementWhereInput | Bundle_ElementWhereInput[] No
id IntFilter | Int No
bundle_id IntFilter | Int No
element_id IntFilter | Int No
element_type EnumElementTypeFilter | ElementType No
status EnumGenericStatusFilter | GenericStatus No
user_id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
deleted_at DateTimeNullableFilter | DateTime | Null Yes
deleted_by IntNullableFilter | Int | Null Yes
user UserRelationFilter | UserWhereInput | Null Yes
bundle BundleRelationFilter | BundleWhereInput | Null Yes
element ElementRelationFilter | ElementWhereInput | Null Yes

Bundle_ElementOrderByWithRelationInput

Name Type Nullable
id SortOrder No
bundle_id SortOrder No
element_id SortOrder No
element_type SortOrder No
status SortOrder No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder | SortOrderInput No
deleted_by SortOrder | SortOrderInput No
user UserOrderByWithRelationInput No
bundle BundleOrderByWithRelationInput No
element ElementOrderByWithRelationInput No

Bundle_ElementWhereUniqueInput

Name Type Nullable
id Int No

Bundle_ElementOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
bundle_id SortOrder No
element_id SortOrder No
element_type SortOrder No
status SortOrder No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder | SortOrderInput No
deleted_by SortOrder | SortOrderInput No
_count Bundle_ElementCountOrderByAggregateInput No
_avg Bundle_ElementAvgOrderByAggregateInput No
_max Bundle_ElementMaxOrderByAggregateInput No
_min Bundle_ElementMinOrderByAggregateInput No
_sum Bundle_ElementSumOrderByAggregateInput No

Bundle_ElementScalarWhereWithAggregatesInput

Name Type Nullable
AND Bundle_ElementScalarWhereWithAggregatesInput | Bundle_ElementScalarWhereWithAggregatesInput[] No
OR Bundle_ElementScalarWhereWithAggregatesInput[] No
NOT Bundle_ElementScalarWhereWithAggregatesInput | Bundle_ElementScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
bundle_id IntWithAggregatesFilter | Int No
element_id IntWithAggregatesFilter | Int No
element_type EnumElementTypeWithAggregatesFilter | ElementType No
status EnumGenericStatusWithAggregatesFilter | GenericStatus No
user_id IntWithAggregatesFilter | Int No
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No
deleted_at DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
deleted_by IntNullableWithAggregatesFilter | Int | Null Yes

Element_ImageWhereInput

Name Type Nullable
AND Element_ImageWhereInput | Element_ImageWhereInput[] No
OR Element_ImageWhereInput[] No
NOT Element_ImageWhereInput | Element_ImageWhereInput[] No
id IntFilter | Int No
url StringFilter | String No
element_id IntFilter | Int No
created_at DateTimeFilter | DateTime No
element ElementRelationFilter | ElementWhereInput | Null Yes

Element_ImageOrderByWithRelationInput

Name Type Nullable
id SortOrder No
url SortOrder No
element_id SortOrder No
created_at SortOrder No
element ElementOrderByWithRelationInput No

Element_ImageWhereUniqueInput

Name Type Nullable
id Int No

Element_ImageOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
url SortOrder No
element_id SortOrder No
created_at SortOrder No
_count Element_ImageCountOrderByAggregateInput No
_avg Element_ImageAvgOrderByAggregateInput No
_max Element_ImageMaxOrderByAggregateInput No
_min Element_ImageMinOrderByAggregateInput No
_sum Element_ImageSumOrderByAggregateInput No


Bundle_ImageWhereInput

Name Type Nullable
AND Bundle_ImageWhereInput | Bundle_ImageWhereInput[] No
OR Bundle_ImageWhereInput[] No
NOT Bundle_ImageWhereInput | Bundle_ImageWhereInput[] No
id IntFilter | Int No
url StringFilter | String No
bundle_id IntFilter | Int No
created_at DateTimeFilter | DateTime No
bundle BundleRelationFilter | BundleWhereInput | Null Yes

Bundle_ImageOrderByWithRelationInput

Name Type Nullable
id SortOrder No
url SortOrder No
bundle_id SortOrder No
created_at SortOrder No
bundle BundleOrderByWithRelationInput No

Bundle_ImageWhereUniqueInput

Name Type Nullable
id Int No

Bundle_ImageOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
url SortOrder No
bundle_id SortOrder No
created_at SortOrder No
_count Bundle_ImageCountOrderByAggregateInput No
_avg Bundle_ImageAvgOrderByAggregateInput No
_max Bundle_ImageMaxOrderByAggregateInput No
_min Bundle_ImageMinOrderByAggregateInput No
_sum Bundle_ImageSumOrderByAggregateInput No


Element_Best_UseWhereInput

Name Type Nullable
AND Element_Best_UseWhereInput | Element_Best_UseWhereInput[] No
OR Element_Best_UseWhereInput[] No
NOT Element_Best_UseWhereInput | Element_Best_UseWhereInput[] No
id IntFilter | Int No
element_id IntFilter | Int No
title StringFilter | String No
description StringFilter | String No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
element ElementRelationFilter | ElementWhereInput | Null Yes

Element_Best_UseOrderByWithRelationInput

Name Type Nullable
id SortOrder No
element_id SortOrder No
title SortOrder No
description SortOrder No
created_at SortOrder No
updated_at SortOrder No
element ElementOrderByWithRelationInput No

Element_Best_UseWhereUniqueInput

Name Type Nullable
id Int No

Element_Best_UseOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
element_id SortOrder No
title SortOrder No
description SortOrder No
created_at SortOrder No
updated_at SortOrder No
_count Element_Best_UseCountOrderByAggregateInput No
_avg Element_Best_UseAvgOrderByAggregateInput No
_max Element_Best_UseMaxOrderByAggregateInput No
_min Element_Best_UseMinOrderByAggregateInput No
_sum Element_Best_UseSumOrderByAggregateInput No


CategoryWhereInput

Name Type Nullable
AND CategoryWhereInput | CategoryWhereInput[] No
OR CategoryWhereInput[] No
NOT CategoryWhereInput | CategoryWhereInput[] No
id IntFilter | Int No
name StringFilter | String No
slug StringFilter | String No
description StringNullableFilter | String | Null Yes
type EnumAssetTypeFilter | AssetType No
status EnumGenericStatusFilter | GenericStatus No
image StringNullableFilter | String | Null Yes
banner StringNullableFilter | String | Null Yes
user_id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
deleted_at DateTimeNullableFilter | DateTime | Null Yes
deleted_by IntNullableFilter | Int | Null Yes
user UserRelationFilter | UserWhereInput | Null Yes
element_categories Element_CategoryListRelationFilter No
bundle_categories Bundle_CategoryListRelationFilter No

CategoryOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
slug SortOrder No
description SortOrder | SortOrderInput No
type SortOrder No
status SortOrder No
image SortOrder | SortOrderInput No
banner SortOrder | SortOrderInput No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder | SortOrderInput No
deleted_by SortOrder | SortOrderInput No
user UserOrderByWithRelationInput No
element_categories Element_CategoryOrderByRelationAggregateInput No
bundle_categories Bundle_CategoryOrderByRelationAggregateInput No

CategoryWhereUniqueInput

Name Type Nullable
id Int No
slug String No

CategoryOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
slug SortOrder No
description SortOrder | SortOrderInput No
type SortOrder No
status SortOrder No
image SortOrder | SortOrderInput No
banner SortOrder | SortOrderInput No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder | SortOrderInput No
deleted_by SortOrder | SortOrderInput No
_count CategoryCountOrderByAggregateInput No
_avg CategoryAvgOrderByAggregateInput No
_max CategoryMaxOrderByAggregateInput No
_min CategoryMinOrderByAggregateInput No
_sum CategorySumOrderByAggregateInput No

CategoryScalarWhereWithAggregatesInput

Name Type Nullable
AND CategoryScalarWhereWithAggregatesInput | CategoryScalarWhereWithAggregatesInput[] No
OR CategoryScalarWhereWithAggregatesInput[] No
NOT CategoryScalarWhereWithAggregatesInput | CategoryScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
name StringWithAggregatesFilter | String No
slug StringWithAggregatesFilter | String No
description StringNullableWithAggregatesFilter | String | Null Yes
type EnumAssetTypeWithAggregatesFilter | AssetType No
status EnumGenericStatusWithAggregatesFilter | GenericStatus No
image StringNullableWithAggregatesFilter | String | Null Yes
banner StringNullableWithAggregatesFilter | String | Null Yes
user_id IntWithAggregatesFilter | Int No
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No
deleted_at DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
deleted_by IntNullableWithAggregatesFilter | Int | Null Yes

Element_CategoryWhereInput

Name Type Nullable
AND Element_CategoryWhereInput | Element_CategoryWhereInput[] No
OR Element_CategoryWhereInput[] No
NOT Element_CategoryWhereInput | Element_CategoryWhereInput[] No
id IntFilter | Int No
element_id IntFilter | Int No
category_id IntFilter | Int No
created_at DateTimeFilter | DateTime No
element ElementRelationFilter | ElementWhereInput | Null Yes
category CategoryRelationFilter | CategoryWhereInput | Null Yes

Element_CategoryOrderByWithRelationInput

Name Type Nullable
id SortOrder No
element_id SortOrder No
category_id SortOrder No
created_at SortOrder No
element ElementOrderByWithRelationInput No
category CategoryOrderByWithRelationInput No

Element_CategoryWhereUniqueInput

Name Type Nullable
id Int No

Element_CategoryOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
element_id SortOrder No
category_id SortOrder No
created_at SortOrder No
_count Element_CategoryCountOrderByAggregateInput No
_avg Element_CategoryAvgOrderByAggregateInput No
_max Element_CategoryMaxOrderByAggregateInput No
_min Element_CategoryMinOrderByAggregateInput No
_sum Element_CategorySumOrderByAggregateInput No


Bundle_CategoryWhereInput

Name Type Nullable
AND Bundle_CategoryWhereInput | Bundle_CategoryWhereInput[] No
OR Bundle_CategoryWhereInput[] No
NOT Bundle_CategoryWhereInput | Bundle_CategoryWhereInput[] No
id IntFilter | Int No
bundle_id IntFilter | Int No
category_id IntFilter | Int No
created_at DateTimeFilter | DateTime No
bundle BundleRelationFilter | BundleWhereInput | Null Yes
category CategoryRelationFilter | CategoryWhereInput | Null Yes

Bundle_CategoryOrderByWithRelationInput

Name Type Nullable
id SortOrder No
bundle_id SortOrder No
category_id SortOrder No
created_at SortOrder No
bundle BundleOrderByWithRelationInput No
category CategoryOrderByWithRelationInput No

Bundle_CategoryWhereUniqueInput

Name Type Nullable
id Int No

Bundle_CategoryOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
bundle_id SortOrder No
category_id SortOrder No
created_at SortOrder No
_count Bundle_CategoryCountOrderByAggregateInput No
_avg Bundle_CategoryAvgOrderByAggregateInput No
_max Bundle_CategoryMaxOrderByAggregateInput No
_min Bundle_CategoryMinOrderByAggregateInput No
_sum Bundle_CategorySumOrderByAggregateInput No


TagWhereInput

Name Type Nullable
AND TagWhereInput | TagWhereInput[] No
OR TagWhereInput[] No
NOT TagWhereInput | TagWhereInput[] No
id IntFilter | Int No
name StringFilter | String No
slug StringFilter | String No
user_id IntFilter | Int No
description StringNullableFilter | String | Null Yes
image StringNullableFilter | String | Null Yes
banner StringNullableFilter | String | Null Yes
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
deleted_at DateTimeNullableFilter | DateTime | Null Yes
deleted_by IntNullableFilter | Int | Null Yes
user UserRelationFilter | UserWhereInput | Null Yes
elements Element_TagListRelationFilter No

TagOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
slug SortOrder No
user_id SortOrder No
description SortOrder | SortOrderInput No
image SortOrder | SortOrderInput No
banner SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder | SortOrderInput No
deleted_by SortOrder | SortOrderInput No
user UserOrderByWithRelationInput No
elements Element_TagOrderByRelationAggregateInput No

TagWhereUniqueInput

Name Type Nullable
id Int No
slug String No

TagOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
slug SortOrder No
user_id SortOrder No
description SortOrder | SortOrderInput No
image SortOrder | SortOrderInput No
banner SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder | SortOrderInput No
deleted_by SortOrder | SortOrderInput No
_count TagCountOrderByAggregateInput No
_avg TagAvgOrderByAggregateInput No
_max TagMaxOrderByAggregateInput No
_min TagMinOrderByAggregateInput No
_sum TagSumOrderByAggregateInput No

TagScalarWhereWithAggregatesInput

Name Type Nullable
AND TagScalarWhereWithAggregatesInput | TagScalarWhereWithAggregatesInput[] No
OR TagScalarWhereWithAggregatesInput[] No
NOT TagScalarWhereWithAggregatesInput | TagScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
name StringWithAggregatesFilter | String No
slug StringWithAggregatesFilter | String No
user_id IntWithAggregatesFilter | Int No
description StringNullableWithAggregatesFilter | String | Null Yes
image StringNullableWithAggregatesFilter | String | Null Yes
banner StringNullableWithAggregatesFilter | String | Null Yes
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No
deleted_at DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
deleted_by IntNullableWithAggregatesFilter | Int | Null Yes

Element_TagWhereInput

Name Type Nullable
AND Element_TagWhereInput | Element_TagWhereInput[] No
OR Element_TagWhereInput[] No
NOT Element_TagWhereInput | Element_TagWhereInput[] No
id IntFilter | Int No
element_id IntFilter | Int No
tag_id IntFilter | Int No
created_at DateTimeFilter | DateTime No
tag TagRelationFilter | TagWhereInput | Null Yes
element ElementRelationFilter | ElementWhereInput | Null Yes

Element_TagOrderByWithRelationInput

Name Type Nullable
id SortOrder No
element_id SortOrder No
tag_id SortOrder No
created_at SortOrder No
tag TagOrderByWithRelationInput No
element ElementOrderByWithRelationInput No

Element_TagWhereUniqueInput

Name Type Nullable
id Int No

Element_TagOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
element_id SortOrder No
tag_id SortOrder No
created_at SortOrder No
_count Element_TagCountOrderByAggregateInput No
_avg Element_TagAvgOrderByAggregateInput No
_max Element_TagMaxOrderByAggregateInput No
_min Element_TagMinOrderByAggregateInput No
_sum Element_TagSumOrderByAggregateInput No


SessionWhereInput

Name Type Nullable
AND SessionWhereInput | SessionWhereInput[] No
OR SessionWhereInput[] No
NOT SessionWhereInput | SessionWhereInput[] No
id IntFilter | Int No
shop StringFilter | String No
state StringNullableFilter | String | Null Yes
isOnline BoolFilter | Boolean No
scope StringFilter | String No
userId IntNullableFilter | Int | Null Yes

SessionOrderByWithRelationInput

Name Type Nullable
id SortOrder No
shop SortOrder No
state SortOrder | SortOrderInput No
isOnline SortOrder No
scope SortOrder No
userId SortOrder | SortOrderInput No

SessionWhereUniqueInput

Name Type Nullable
id Int No

SessionOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
shop SortOrder No
state SortOrder | SortOrderInput No
isOnline SortOrder No
scope SortOrder No
userId SortOrder | SortOrderInput No
_count SessionCountOrderByAggregateInput No
_avg SessionAvgOrderByAggregateInput No
_max SessionMaxOrderByAggregateInput No
_min SessionMinOrderByAggregateInput No
_sum SessionSumOrderByAggregateInput No


OrderWhereInput

Name Type Nullable
AND OrderWhereInput | OrderWhereInput[] No
OR OrderWhereInput[] No
NOT OrderWhereInput | OrderWhereInput[] No
id IntFilter | Int No
uuid StringFilter | String No
shop_id IntFilter | Int No
asset_type EnumAssetTypeFilter | AssetType No
status EnumOrderStatusFilter | OrderStatus No
sub_total DecimalFilter | Decimal No
discounted_amout DecimalNullableFilter | Decimal | Null Yes
coupon_id IntNullableFilter | Int | Null Yes
coupon_code StringNullableFilter | String | Null Yes
coupon_discount_type EnumDiscountTypeNullableFilter | DiscountType | Null Yes
coupon_discount_value DecimalNullableFilter | Decimal | Null Yes
grand_total DecimalFilter | Decimal No
affiliated_by IntNullableFilter | Int | Null Yes
affiliated_commission DecimalNullableFilter | Decimal | Null Yes
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
shop ShopRelationFilter | ShopWhereInput | Null Yes
coupon CouponRelationFilter | CouponWhereInput | Null Yes
order_items Order_ItemListRelationFilter No
affiliator_commissions Affiliator_CommissionListRelationFilter No

OrderOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
shop_id SortOrder No
asset_type SortOrder No
status SortOrder No
sub_total SortOrder No
discounted_amout SortOrder | SortOrderInput No
coupon_id SortOrder | SortOrderInput No
coupon_code SortOrder | SortOrderInput No
coupon_discount_type SortOrder | SortOrderInput No
coupon_discount_value SortOrder | SortOrderInput No
grand_total SortOrder No
affiliated_by SortOrder | SortOrderInput No
affiliated_commission SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No
shop ShopOrderByWithRelationInput No
coupon CouponOrderByWithRelationInput No
order_items Order_ItemOrderByRelationAggregateInput No
affiliator_commissions Affiliator_CommissionOrderByRelationAggregateInput No

OrderWhereUniqueInput

Name Type Nullable
id Int No
uuid String No

OrderOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
shop_id SortOrder No
asset_type SortOrder No
status SortOrder No
sub_total SortOrder No
discounted_amout SortOrder | SortOrderInput No
coupon_id SortOrder | SortOrderInput No
coupon_code SortOrder | SortOrderInput No
coupon_discount_type SortOrder | SortOrderInput No
coupon_discount_value SortOrder | SortOrderInput No
grand_total SortOrder No
affiliated_by SortOrder | SortOrderInput No
affiliated_commission SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No
_count OrderCountOrderByAggregateInput No
_avg OrderAvgOrderByAggregateInput No
_max OrderMaxOrderByAggregateInput No
_min OrderMinOrderByAggregateInput No
_sum OrderSumOrderByAggregateInput No

OrderScalarWhereWithAggregatesInput

Name Type Nullable
AND OrderScalarWhereWithAggregatesInput | OrderScalarWhereWithAggregatesInput[] No
OR OrderScalarWhereWithAggregatesInput[] No
NOT OrderScalarWhereWithAggregatesInput | OrderScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
uuid StringWithAggregatesFilter | String No
shop_id IntWithAggregatesFilter | Int No
asset_type EnumAssetTypeWithAggregatesFilter | AssetType No
status EnumOrderStatusWithAggregatesFilter | OrderStatus No
sub_total DecimalWithAggregatesFilter | Decimal No
discounted_amout DecimalNullableWithAggregatesFilter | Decimal | Null Yes
coupon_id IntNullableWithAggregatesFilter | Int | Null Yes
coupon_code StringNullableWithAggregatesFilter | String | Null Yes
coupon_discount_type EnumDiscountTypeNullableWithAggregatesFilter | DiscountType | Null Yes
coupon_discount_value DecimalNullableWithAggregatesFilter | Decimal | Null Yes
grand_total DecimalWithAggregatesFilter | Decimal No
affiliated_by IntNullableWithAggregatesFilter | Int | Null Yes
affiliated_commission DecimalNullableWithAggregatesFilter | Decimal | Null Yes
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No

Order_ItemWhereInput

Name Type Nullable
AND Order_ItemWhereInput | Order_ItemWhereInput[] No
OR Order_ItemWhereInput[] No
NOT Order_ItemWhereInput | Order_ItemWhereInput[] No
id IntFilter | Int No
order_id IntFilter | Int No
asset_id IntFilter | Int No
asset_type EnumAssetTypeFilter | AssetType No
price DecimalFilter | Decimal No
discounted_price DecimalNullableFilter | Decimal | Null Yes
discount_type EnumDiscountTypeNullableFilter | DiscountType | Null Yes
discount_value DecimalNullableFilter | Decimal | Null Yes
order_bundle_id IntNullableFilter | Int | Null Yes
order OrderRelationFilter | OrderWhereInput | Null Yes

Order_ItemOrderByWithRelationInput

Name Type Nullable
id SortOrder No
order_id SortOrder No
asset_id SortOrder No
asset_type SortOrder No
price SortOrder No
discounted_price SortOrder | SortOrderInput No
discount_type SortOrder | SortOrderInput No
discount_value SortOrder | SortOrderInput No
order_bundle_id SortOrder | SortOrderInput No
order OrderOrderByWithRelationInput No

Order_ItemWhereUniqueInput

Name Type Nullable
id Int No

Order_ItemOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
order_id SortOrder No
asset_id SortOrder No
asset_type SortOrder No
price SortOrder No
discounted_price SortOrder | SortOrderInput No
discount_type SortOrder | SortOrderInput No
discount_value SortOrder | SortOrderInput No
order_bundle_id SortOrder | SortOrderInput No
_count Order_ItemCountOrderByAggregateInput No
_avg Order_ItemAvgOrderByAggregateInput No
_max Order_ItemMaxOrderByAggregateInput No
_min Order_ItemMinOrderByAggregateInput No
_sum Order_ItemSumOrderByAggregateInput No

Order_ItemScalarWhereWithAggregatesInput

Name Type Nullable
AND Order_ItemScalarWhereWithAggregatesInput | Order_ItemScalarWhereWithAggregatesInput[] No
OR Order_ItemScalarWhereWithAggregatesInput[] No
NOT Order_ItemScalarWhereWithAggregatesInput | Order_ItemScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
order_id IntWithAggregatesFilter | Int No
asset_id IntWithAggregatesFilter | Int No
asset_type EnumAssetTypeWithAggregatesFilter | AssetType No
price DecimalWithAggregatesFilter | Decimal No
discounted_price DecimalNullableWithAggregatesFilter | Decimal | Null Yes
discount_type EnumDiscountTypeNullableWithAggregatesFilter | DiscountType | Null Yes
discount_value DecimalNullableWithAggregatesFilter | Decimal | Null Yes
order_bundle_id IntNullableWithAggregatesFilter | Int | Null Yes

CouponWhereInput

Name Type Nullable
AND CouponWhereInput | CouponWhereInput[] No
OR CouponWhereInput[] No
NOT CouponWhereInput | CouponWhereInput[] No
id IntFilter | Int No
code StringFilter | String No
status EnumCouponStatusFilter | CouponStatus No
expired_at DateTimeNullableFilter | DateTime | Null Yes
max_total_applied IntNullableFilter | Int | Null Yes
max_applied_by_shop IntNullableFilter | Int | Null Yes
discount_type EnumDiscountTypeNullableFilter | DiscountType | Null Yes
discount_value DecimalNullableFilter | Decimal | Null Yes
min_order_amount DecimalNullableFilter | Decimal | Null Yes
max_discount_limit DecimalNullableFilter | Decimal | Null Yes
is_apply_on_asset_discount BoolNullableFilter | Boolean | Null Yes
affiliated_by IntNullableFilter | Int | Null Yes
commission_type EnumDiscountTypeNullableFilter | DiscountType | Null Yes
commission_value DecimalNullableFilter | Decimal | Null Yes
user_id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
deleted_at DateTimeNullableFilter | DateTime | Null Yes
deleted_by IntNullableFilter | Int | Null Yes
affiliator AffiliatorRelationFilter | AffiliatorWhereInput | Null Yes
user UserRelationFilter | UserWhereInput | Null Yes
orders OrderListRelationFilter No
affiliator_commissions Affiliator_CommissionListRelationFilter No

CouponOrderByWithRelationInput

Name Type Nullable
id SortOrder No
code SortOrder No
status SortOrder No
expired_at SortOrder | SortOrderInput No
max_total_applied SortOrder | SortOrderInput No
max_applied_by_shop SortOrder | SortOrderInput No
discount_type SortOrder | SortOrderInput No
discount_value SortOrder | SortOrderInput No
min_order_amount SortOrder | SortOrderInput No
max_discount_limit SortOrder | SortOrderInput No
is_apply_on_asset_discount SortOrder | SortOrderInput No
affiliated_by SortOrder | SortOrderInput No
commission_type SortOrder | SortOrderInput No
commission_value SortOrder | SortOrderInput No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder | SortOrderInput No
deleted_by SortOrder | SortOrderInput No
affiliator AffiliatorOrderByWithRelationInput No
user UserOrderByWithRelationInput No
orders OrderOrderByRelationAggregateInput No
affiliator_commissions Affiliator_CommissionOrderByRelationAggregateInput No

CouponWhereUniqueInput

Name Type Nullable
id Int No
code String No

CouponOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
code SortOrder No
status SortOrder No
expired_at SortOrder | SortOrderInput No
max_total_applied SortOrder | SortOrderInput No
max_applied_by_shop SortOrder | SortOrderInput No
discount_type SortOrder | SortOrderInput No
discount_value SortOrder | SortOrderInput No
min_order_amount SortOrder | SortOrderInput No
max_discount_limit SortOrder | SortOrderInput No
is_apply_on_asset_discount SortOrder | SortOrderInput No
affiliated_by SortOrder | SortOrderInput No
commission_type SortOrder | SortOrderInput No
commission_value SortOrder | SortOrderInput No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder | SortOrderInput No
deleted_by SortOrder | SortOrderInput No
_count CouponCountOrderByAggregateInput No
_avg CouponAvgOrderByAggregateInput No
_max CouponMaxOrderByAggregateInput No
_min CouponMinOrderByAggregateInput No
_sum CouponSumOrderByAggregateInput No

CouponScalarWhereWithAggregatesInput

Name Type Nullable
AND CouponScalarWhereWithAggregatesInput | CouponScalarWhereWithAggregatesInput[] No
OR CouponScalarWhereWithAggregatesInput[] No
NOT CouponScalarWhereWithAggregatesInput | CouponScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
code StringWithAggregatesFilter | String No
status EnumCouponStatusWithAggregatesFilter | CouponStatus No
expired_at DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
max_total_applied IntNullableWithAggregatesFilter | Int | Null Yes
max_applied_by_shop IntNullableWithAggregatesFilter | Int | Null Yes
discount_type EnumDiscountTypeNullableWithAggregatesFilter | DiscountType | Null Yes
discount_value DecimalNullableWithAggregatesFilter | Decimal | Null Yes
min_order_amount DecimalNullableWithAggregatesFilter | Decimal | Null Yes
max_discount_limit DecimalNullableWithAggregatesFilter | Decimal | Null Yes
is_apply_on_asset_discount BoolNullableWithAggregatesFilter | Boolean | Null Yes
affiliated_by IntNullableWithAggregatesFilter | Int | Null Yes
commission_type EnumDiscountTypeNullableWithAggregatesFilter | DiscountType | Null Yes
commission_value DecimalNullableWithAggregatesFilter | Decimal | Null Yes
user_id IntWithAggregatesFilter | Int No
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No
deleted_at DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
deleted_by IntNullableWithAggregatesFilter | Int | Null Yes

AffiliatorWhereInput

Name Type Nullable
AND AffiliatorWhereInput | AffiliatorWhereInput[] No
OR AffiliatorWhereInput[] No
NOT AffiliatorWhereInput | AffiliatorWhereInput[] No
id IntFilter | Int No
uuid StringFilter | String No
user_id IntFilter | Int No
invited_by IntNullableFilter | Int | Null Yes
type EnumAffiliatorTypeFilter | AffiliatorType No
type_other StringNullableFilter | String | Null Yes
status EnumAffiliatorStatusFilter | AffiliatorStatus No
total_earned DecimalNullableFilter | Decimal | Null Yes
total_paid DecimalNullableFilter | Decimal | Null Yes
current_coupon_id IntNullableFilter | Int | Null Yes
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
deleted_at DateTimeNullableFilter | DateTime | Null Yes
deleted_by IntNullableFilter | Int | Null Yes
user UserRelationFilter | UserWhereInput | Null Yes
affiliator_withdraw_requests Affiliator_Withdraw_RequestListRelationFilter No
affiliator_commissions Affiliator_CommissionListRelationFilter No
coupons CouponListRelationFilter No

AffiliatorOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
user_id SortOrder No
invited_by SortOrder | SortOrderInput No
type SortOrder No
type_other SortOrder | SortOrderInput No
status SortOrder No
total_earned SortOrder | SortOrderInput No
total_paid SortOrder | SortOrderInput No
current_coupon_id SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder | SortOrderInput No
deleted_by SortOrder | SortOrderInput No
user UserOrderByWithRelationInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestOrderByRelationAggregateInput No
affiliator_commissions Affiliator_CommissionOrderByRelationAggregateInput No
coupons CouponOrderByRelationAggregateInput No

AffiliatorWhereUniqueInput

Name Type Nullable
id Int No
uuid String No

AffiliatorOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
user_id SortOrder No
invited_by SortOrder | SortOrderInput No
type SortOrder No
type_other SortOrder | SortOrderInput No
status SortOrder No
total_earned SortOrder | SortOrderInput No
total_paid SortOrder | SortOrderInput No
current_coupon_id SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder | SortOrderInput No
deleted_by SortOrder | SortOrderInput No
_count AffiliatorCountOrderByAggregateInput No
_avg AffiliatorAvgOrderByAggregateInput No
_max AffiliatorMaxOrderByAggregateInput No
_min AffiliatorMinOrderByAggregateInput No
_sum AffiliatorSumOrderByAggregateInput No

AffiliatorScalarWhereWithAggregatesInput

Name Type Nullable
AND AffiliatorScalarWhereWithAggregatesInput | AffiliatorScalarWhereWithAggregatesInput[] No
OR AffiliatorScalarWhereWithAggregatesInput[] No
NOT AffiliatorScalarWhereWithAggregatesInput | AffiliatorScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
uuid StringWithAggregatesFilter | String No
user_id IntWithAggregatesFilter | Int No
invited_by IntNullableWithAggregatesFilter | Int | Null Yes
type EnumAffiliatorTypeWithAggregatesFilter | AffiliatorType No
type_other StringNullableWithAggregatesFilter | String | Null Yes
status EnumAffiliatorStatusWithAggregatesFilter | AffiliatorStatus No
total_earned DecimalNullableWithAggregatesFilter | Decimal | Null Yes
total_paid DecimalNullableWithAggregatesFilter | Decimal | Null Yes
current_coupon_id IntNullableWithAggregatesFilter | Int | Null Yes
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No
deleted_at DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
deleted_by IntNullableWithAggregatesFilter | Int | Null Yes

Affiliator_CommissionWhereInput

Name Type Nullable
AND Affiliator_CommissionWhereInput | Affiliator_CommissionWhereInput[] No
OR Affiliator_CommissionWhereInput[] No
NOT Affiliator_CommissionWhereInput | Affiliator_CommissionWhereInput[] No
id IntFilter | Int No
uuid StringFilter | String No
affiliator_id IntFilter | Int No
user_id IntFilter | Int No
order_id IntNullableFilter | Int | Null Yes
shop_id IntNullableFilter | Int | Null Yes
coupon_id IntNullableFilter | Int | Null Yes
coupon_code StringNullableFilter | String | Null Yes
order_amout DecimalNullableFilter | Decimal | Null Yes
coupon_discount_type EnumDiscountTypeNullableFilter | DiscountType | Null Yes
coupon_discount_value DecimalNullableFilter | Decimal | Null Yes
commission_type EnumDiscountTypeFilter | DiscountType No
commission_value DecimalFilter | Decimal No
amount DecimalFilter | Decimal No
status EnumCommissionStatusFilter | CommissionStatus No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
affiliator AffiliatorRelationFilter | AffiliatorWhereInput | Null Yes
user UserRelationFilter | UserWhereInput | Null Yes
order OrderRelationFilter | OrderWhereInput | Null Yes
shop ShopRelationFilter | ShopWhereInput | Null Yes
coupon CouponRelationFilter | CouponWhereInput | Null Yes

Affiliator_CommissionOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
affiliator_id SortOrder No
user_id SortOrder No
order_id SortOrder | SortOrderInput No
shop_id SortOrder | SortOrderInput No
coupon_id SortOrder | SortOrderInput No
coupon_code SortOrder | SortOrderInput No
order_amout SortOrder | SortOrderInput No
coupon_discount_type SortOrder | SortOrderInput No
coupon_discount_value SortOrder | SortOrderInput No
commission_type SortOrder No
commission_value SortOrder No
amount SortOrder No
status SortOrder No
created_at SortOrder No
updated_at SortOrder No
affiliator AffiliatorOrderByWithRelationInput No
user UserOrderByWithRelationInput No
order OrderOrderByWithRelationInput No
shop ShopOrderByWithRelationInput No
coupon CouponOrderByWithRelationInput No

Affiliator_CommissionWhereUniqueInput

Name Type Nullable
id Int No
uuid String No

Affiliator_CommissionOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
affiliator_id SortOrder No
user_id SortOrder No
order_id SortOrder | SortOrderInput No
shop_id SortOrder | SortOrderInput No
coupon_id SortOrder | SortOrderInput No
coupon_code SortOrder | SortOrderInput No
order_amout SortOrder | SortOrderInput No
coupon_discount_type SortOrder | SortOrderInput No
coupon_discount_value SortOrder | SortOrderInput No
commission_type SortOrder No
commission_value SortOrder No
amount SortOrder No
status SortOrder No
created_at SortOrder No
updated_at SortOrder No
_count Affiliator_CommissionCountOrderByAggregateInput No
_avg Affiliator_CommissionAvgOrderByAggregateInput No
_max Affiliator_CommissionMaxOrderByAggregateInput No
_min Affiliator_CommissionMinOrderByAggregateInput No
_sum Affiliator_CommissionSumOrderByAggregateInput No

Affiliator_CommissionScalarWhereWithAggregatesInput

Name Type Nullable
AND Affiliator_CommissionScalarWhereWithAggregatesInput | Affiliator_CommissionScalarWhereWithAggregatesInput[] No
OR Affiliator_CommissionScalarWhereWithAggregatesInput[] No
NOT Affiliator_CommissionScalarWhereWithAggregatesInput | Affiliator_CommissionScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
uuid StringWithAggregatesFilter | String No
affiliator_id IntWithAggregatesFilter | Int No
user_id IntWithAggregatesFilter | Int No
order_id IntNullableWithAggregatesFilter | Int | Null Yes
shop_id IntNullableWithAggregatesFilter | Int | Null Yes
coupon_id IntNullableWithAggregatesFilter | Int | Null Yes
coupon_code StringNullableWithAggregatesFilter | String | Null Yes
order_amout DecimalNullableWithAggregatesFilter | Decimal | Null Yes
coupon_discount_type EnumDiscountTypeNullableWithAggregatesFilter | DiscountType | Null Yes
coupon_discount_value DecimalNullableWithAggregatesFilter | Decimal | Null Yes
commission_type EnumDiscountTypeWithAggregatesFilter | DiscountType No
commission_value DecimalWithAggregatesFilter | Decimal No
amount DecimalWithAggregatesFilter | Decimal No
status EnumCommissionStatusWithAggregatesFilter | CommissionStatus No
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No

Affiliator_Withdraw_RequestWhereInput

Name Type Nullable
AND Affiliator_Withdraw_RequestWhereInput | Affiliator_Withdraw_RequestWhereInput[] No
OR Affiliator_Withdraw_RequestWhereInput[] No
NOT Affiliator_Withdraw_RequestWhereInput | Affiliator_Withdraw_RequestWhereInput[] No
id IntFilter | Int No
uuid StringFilter | String No
affiliator_id IntFilter | Int No
status EnumCommissionWithdrawStatusFilter | CommissionWithdrawStatus No
amount DecimalFilter | Decimal No
payment_method_id IntFilter | Int No
payment_method EnumPaymentMethodFilter | PaymentMethod No
payment_method_details JsonFilter No
assignee IntNullableFilter | Int | Null Yes
note StringNullableFilter | String | Null Yes
reject_reason StringNullableFilter | String | Null Yes
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
affiliator AffiliatorRelationFilter | AffiliatorWhereInput | Null Yes
payment_method_detail User_Pament_MethodRelationFilter | User_Pament_MethodWhereInput | Null Yes
assigned_user UserRelationFilter | UserWhereInput | Null Yes

Affiliator_Withdraw_RequestOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
affiliator_id SortOrder No
status SortOrder No
amount SortOrder No
payment_method_id SortOrder No
payment_method SortOrder No
payment_method_details SortOrder No
assignee SortOrder | SortOrderInput No
note SortOrder | SortOrderInput No
reject_reason SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No
affiliator AffiliatorOrderByWithRelationInput No
payment_method_detail User_Pament_MethodOrderByWithRelationInput No
assigned_user UserOrderByWithRelationInput No

Affiliator_Withdraw_RequestWhereUniqueInput

Name Type Nullable
id Int No
uuid String No

Affiliator_Withdraw_RequestOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
affiliator_id SortOrder No
status SortOrder No
amount SortOrder No
payment_method_id SortOrder No
payment_method SortOrder No
payment_method_details SortOrder No
assignee SortOrder | SortOrderInput No
note SortOrder | SortOrderInput No
reject_reason SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No
_count Affiliator_Withdraw_RequestCountOrderByAggregateInput No
_avg Affiliator_Withdraw_RequestAvgOrderByAggregateInput No
_max Affiliator_Withdraw_RequestMaxOrderByAggregateInput No
_min Affiliator_Withdraw_RequestMinOrderByAggregateInput No
_sum Affiliator_Withdraw_RequestSumOrderByAggregateInput No

Affiliator_Withdraw_RequestScalarWhereWithAggregatesInput

Name Type Nullable
AND Affiliator_Withdraw_RequestScalarWhereWithAggregatesInput | Affiliator_Withdraw_RequestScalarWhereWithAggregatesInput[] No
OR Affiliator_Withdraw_RequestScalarWhereWithAggregatesInput[] No
NOT Affiliator_Withdraw_RequestScalarWhereWithAggregatesInput | Affiliator_Withdraw_RequestScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
uuid StringWithAggregatesFilter | String No
affiliator_id IntWithAggregatesFilter | Int No
status EnumCommissionWithdrawStatusWithAggregatesFilter | CommissionWithdrawStatus No
amount DecimalWithAggregatesFilter | Decimal No
payment_method_id IntWithAggregatesFilter | Int No
payment_method EnumPaymentMethodWithAggregatesFilter | PaymentMethod No
payment_method_details JsonWithAggregatesFilter No
assignee IntNullableWithAggregatesFilter | Int | Null Yes
note StringNullableWithAggregatesFilter | String | Null Yes
reject_reason StringNullableWithAggregatesFilter | String | Null Yes
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No

User_Pament_MethodWhereInput

Name Type Nullable
AND User_Pament_MethodWhereInput | User_Pament_MethodWhereInput[] No
OR User_Pament_MethodWhereInput[] No
NOT User_Pament_MethodWhereInput | User_Pament_MethodWhereInput[] No
id IntFilter | Int No
user_id IntFilter | Int No
method EnumPaymentMethodFilter | PaymentMethod No
details JsonFilter No
is_default BoolFilter | Boolean No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
deleted_at DateTimeNullableFilter | DateTime | Null Yes
user UserRelationFilter | UserWhereInput | Null Yes
affiliator_withdraw_requests Affiliator_Withdraw_RequestListRelationFilter No

User_Pament_MethodOrderByWithRelationInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
method SortOrder No
details SortOrder No
is_default SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder | SortOrderInput No
user UserOrderByWithRelationInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestOrderByRelationAggregateInput No

User_Pament_MethodWhereUniqueInput

Name Type Nullable
id Int No

User_Pament_MethodOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
method SortOrder No
details SortOrder No
is_default SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder | SortOrderInput No
_count User_Pament_MethodCountOrderByAggregateInput No
_avg User_Pament_MethodAvgOrderByAggregateInput No
_max User_Pament_MethodMaxOrderByAggregateInput No
_min User_Pament_MethodMinOrderByAggregateInput No
_sum User_Pament_MethodSumOrderByAggregateInput No


Pricing_PlanWhereInput

Name Type Nullable
AND Pricing_PlanWhereInput | Pricing_PlanWhereInput[] No
OR Pricing_PlanWhereInput[] No
NOT Pricing_PlanWhereInput | Pricing_PlanWhereInput[] No
id IntFilter | Int No
name StringFilter | String No
tagline StringFilter | String No
description StringFilter | String No
type EnumPricingPlanTypeFilter | PricingPlanType No
is_recommended BoolFilter | Boolean No
is_popular BoolFilter | Boolean No
price DecimalFilter | Decimal No
discounted_price DecimalNullableFilter | Decimal | Null Yes
yearly_discounted_price DecimalNullableFilter | Decimal | Null Yes
trial_period IntNullableFilter | Int | Null Yes
user_id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
deleted_at DateTimeNullableFilter | DateTime | Null Yes
deleted_by IntNullableFilter | Int | Null Yes
user UserRelationFilter | UserWhereInput | Null Yes
subscriptions Shop_SubscriptionListRelationFilter No
pricing_plan_features Pricing_Plan_FeatureListRelationFilter No

Pricing_PlanOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
tagline SortOrder No
description SortOrder No
type SortOrder No
is_recommended SortOrder No
is_popular SortOrder No
price SortOrder No
discounted_price SortOrder | SortOrderInput No
yearly_discounted_price SortOrder | SortOrderInput No
trial_period SortOrder | SortOrderInput No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder | SortOrderInput No
deleted_by SortOrder | SortOrderInput No
user UserOrderByWithRelationInput No
subscriptions Shop_SubscriptionOrderByRelationAggregateInput No
pricing_plan_features Pricing_Plan_FeatureOrderByRelationAggregateInput No

Pricing_PlanWhereUniqueInput

Name Type Nullable
id Int No
type PricingPlanType No

Pricing_PlanOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
tagline SortOrder No
description SortOrder No
type SortOrder No
is_recommended SortOrder No
is_popular SortOrder No
price SortOrder No
discounted_price SortOrder | SortOrderInput No
yearly_discounted_price SortOrder | SortOrderInput No
trial_period SortOrder | SortOrderInput No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder | SortOrderInput No
deleted_by SortOrder | SortOrderInput No
_count Pricing_PlanCountOrderByAggregateInput No
_avg Pricing_PlanAvgOrderByAggregateInput No
_max Pricing_PlanMaxOrderByAggregateInput No
_min Pricing_PlanMinOrderByAggregateInput No
_sum Pricing_PlanSumOrderByAggregateInput No

Pricing_PlanScalarWhereWithAggregatesInput

Name Type Nullable
AND Pricing_PlanScalarWhereWithAggregatesInput | Pricing_PlanScalarWhereWithAggregatesInput[] No
OR Pricing_PlanScalarWhereWithAggregatesInput[] No
NOT Pricing_PlanScalarWhereWithAggregatesInput | Pricing_PlanScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
name StringWithAggregatesFilter | String No
tagline StringWithAggregatesFilter | String No
description StringWithAggregatesFilter | String No
type EnumPricingPlanTypeWithAggregatesFilter | PricingPlanType No
is_recommended BoolWithAggregatesFilter | Boolean No
is_popular BoolWithAggregatesFilter | Boolean No
price DecimalWithAggregatesFilter | Decimal No
discounted_price DecimalNullableWithAggregatesFilter | Decimal | Null Yes
yearly_discounted_price DecimalNullableWithAggregatesFilter | Decimal | Null Yes
trial_period IntNullableWithAggregatesFilter | Int | Null Yes
user_id IntWithAggregatesFilter | Int No
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No
deleted_at DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
deleted_by IntNullableWithAggregatesFilter | Int | Null Yes

Pricing_Plan_FeatureWhereInput

Name Type Nullable
AND Pricing_Plan_FeatureWhereInput | Pricing_Plan_FeatureWhereInput[] No
OR Pricing_Plan_FeatureWhereInput[] No
NOT Pricing_Plan_FeatureWhereInput | Pricing_Plan_FeatureWhereInput[] No
id IntFilter | Int No
plan_id IntFilter | Int No
title StringFilter | String No
type StringNullableFilter | String | Null Yes
description StringNullableFilter | String | Null Yes
pricing_plan Pricing_PlanRelationFilter | Pricing_PlanWhereInput | Null Yes

Pricing_Plan_FeatureOrderByWithRelationInput

Name Type Nullable
id SortOrder No
plan_id SortOrder No
title SortOrder No
type SortOrder | SortOrderInput No
description SortOrder | SortOrderInput No
pricing_plan Pricing_PlanOrderByWithRelationInput No

Pricing_Plan_FeatureWhereUniqueInput

Name Type Nullable
id Int No



Shop_SubscriptionWhereInput

Name Type Nullable
AND Shop_SubscriptionWhereInput | Shop_SubscriptionWhereInput[] No
OR Shop_SubscriptionWhereInput[] No
NOT Shop_SubscriptionWhereInput | Shop_SubscriptionWhereInput[] No
id IntFilter | Int No
uuid StringFilter | String No
shop_id IntFilter | Int No
plan_id IntFilter | Int No
plan_type EnumPricingPlanTypeFilter | PricingPlanType No
status EnumSubscriptionStatusFilter | SubscriptionStatus No
created_at DateTimeFilter | DateTime No
ended_at DateTimeNullableFilter | DateTime | Null Yes
ended_type EnumSubscriptionEndedTypeNullableFilter | SubscriptionEndedType | Null Yes
updated_at DateTimeFilter | DateTime No
amount DecimalFilter | Decimal No
payment_method EnumPaymentMethodFilter | PaymentMethod No
plan Pricing_PlanRelationFilter | Pricing_PlanWhereInput | Null Yes
shops ShopListRelationFilter No

Shop_SubscriptionOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
shop_id SortOrder No
plan_id SortOrder No
plan_type SortOrder No
status SortOrder No
created_at SortOrder No
ended_at SortOrder | SortOrderInput No
ended_type SortOrder | SortOrderInput No
updated_at SortOrder No
amount SortOrder No
payment_method SortOrder No
plan Pricing_PlanOrderByWithRelationInput No
shops ShopOrderByRelationAggregateInput No

Shop_SubscriptionWhereUniqueInput

Name Type Nullable
id Int No
uuid String No

Shop_SubscriptionOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
shop_id SortOrder No
plan_id SortOrder No
plan_type SortOrder No
status SortOrder No
created_at SortOrder No
ended_at SortOrder | SortOrderInput No
ended_type SortOrder | SortOrderInput No
updated_at SortOrder No
amount SortOrder No
payment_method SortOrder No
_count Shop_SubscriptionCountOrderByAggregateInput No
_avg Shop_SubscriptionAvgOrderByAggregateInput No
_max Shop_SubscriptionMaxOrderByAggregateInput No
_min Shop_SubscriptionMinOrderByAggregateInput No
_sum Shop_SubscriptionSumOrderByAggregateInput No

Shop_SubscriptionScalarWhereWithAggregatesInput

Name Type Nullable
AND Shop_SubscriptionScalarWhereWithAggregatesInput | Shop_SubscriptionScalarWhereWithAggregatesInput[] No
OR Shop_SubscriptionScalarWhereWithAggregatesInput[] No
NOT Shop_SubscriptionScalarWhereWithAggregatesInput | Shop_SubscriptionScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
uuid StringWithAggregatesFilter | String No
shop_id IntWithAggregatesFilter | Int No
plan_id IntWithAggregatesFilter | Int No
plan_type EnumPricingPlanTypeWithAggregatesFilter | PricingPlanType No
status EnumSubscriptionStatusWithAggregatesFilter | SubscriptionStatus No
created_at DateTimeWithAggregatesFilter | DateTime No
ended_at DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
ended_type EnumSubscriptionEndedTypeNullableWithAggregatesFilter | SubscriptionEndedType | Null Yes
updated_at DateTimeWithAggregatesFilter | DateTime No
amount DecimalWithAggregatesFilter | Decimal No
payment_method EnumPaymentMethodWithAggregatesFilter | PaymentMethod No

FaqWhereInput

Name Type Nullable
AND FaqWhereInput | FaqWhereInput[] No
OR FaqWhereInput[] No
NOT FaqWhereInput | FaqWhereInput[] No
id IntFilter | Int No
user_id IntFilter | Int No
question StringFilter | String No
answer StringFilter | String No
status EnumFaqStatusFilter | FaqStatus No
category_id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
deleted_at DateTimeNullableFilter | DateTime | Null Yes
deleted_by IntNullableFilter | Int | Null Yes
user UserRelationFilter | UserWhereInput | Null Yes
category Faq_CategoryRelationFilter | Faq_CategoryWhereInput | Null Yes

FaqOrderByWithRelationInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
question SortOrder No
answer SortOrder No
status SortOrder No
category_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder | SortOrderInput No
deleted_by SortOrder | SortOrderInput No
user UserOrderByWithRelationInput No
category Faq_CategoryOrderByWithRelationInput No

FaqWhereUniqueInput

Name Type Nullable
id Int No

FaqOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
question SortOrder No
answer SortOrder No
status SortOrder No
category_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder | SortOrderInput No
deleted_by SortOrder | SortOrderInput No
_count FaqCountOrderByAggregateInput No
_avg FaqAvgOrderByAggregateInput No
_max FaqMaxOrderByAggregateInput No
_min FaqMinOrderByAggregateInput No
_sum FaqSumOrderByAggregateInput No

FaqScalarWhereWithAggregatesInput

Name Type Nullable
AND FaqScalarWhereWithAggregatesInput | FaqScalarWhereWithAggregatesInput[] No
OR FaqScalarWhereWithAggregatesInput[] No
NOT FaqScalarWhereWithAggregatesInput | FaqScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
user_id IntWithAggregatesFilter | Int No
question StringWithAggregatesFilter | String No
answer StringWithAggregatesFilter | String No
status EnumFaqStatusWithAggregatesFilter | FaqStatus No
category_id IntWithAggregatesFilter | Int No
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No
deleted_at DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
deleted_by IntNullableWithAggregatesFilter | Int | Null Yes

Faq_CategoryWhereInput

Name Type Nullable
AND Faq_CategoryWhereInput | Faq_CategoryWhereInput[] No
OR Faq_CategoryWhereInput[] No
NOT Faq_CategoryWhereInput | Faq_CategoryWhereInput[] No
id IntFilter | Int No
name StringFilter | String No
user_id IntFilter | Int No
description StringNullableFilter | String | Null Yes
banner StringNullableFilter | String | Null Yes
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
deleted_at DateTimeNullableFilter | DateTime | Null Yes
deleted_by IntNullableFilter | Int | Null Yes
user UserRelationFilter | UserWhereInput | Null Yes
faqs FaqListRelationFilter No

Faq_CategoryOrderByWithRelationInput

Name Type Nullable
id SortOrder No
name SortOrder No
user_id SortOrder No
description SortOrder | SortOrderInput No
banner SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder | SortOrderInput No
deleted_by SortOrder | SortOrderInput No
user UserOrderByWithRelationInput No
faqs FaqOrderByRelationAggregateInput No

Faq_CategoryWhereUniqueInput

Name Type Nullable
id Int No

Faq_CategoryOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
name SortOrder No
user_id SortOrder No
description SortOrder | SortOrderInput No
banner SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder | SortOrderInput No
deleted_by SortOrder | SortOrderInput No
_count Faq_CategoryCountOrderByAggregateInput No
_avg Faq_CategoryAvgOrderByAggregateInput No
_max Faq_CategoryMaxOrderByAggregateInput No
_min Faq_CategoryMinOrderByAggregateInput No
_sum Faq_CategorySumOrderByAggregateInput No


AttachmentWhereInput

Name Type Nullable
AND AttachmentWhereInput | AttachmentWhereInput[] No
OR AttachmentWhereInput[] No
NOT AttachmentWhereInput | AttachmentWhereInput[] No
id IntFilter | Int No
uuid StringFilter | String No
url StringFilter | String No
type EnumAttachmentTypeFilter | AttachmentType No
ref_id IntFilter | Int No
ref_type EnumAttachmentRefTypeFilter | AttachmentRefType No
created_at DateTimeFilter | DateTime No

AttachmentOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
url SortOrder No
type SortOrder No
ref_id SortOrder No
ref_type SortOrder No
created_at SortOrder No

AttachmentWhereUniqueInput

Name Type Nullable
id Int No
uuid String No

AttachmentOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
url SortOrder No
type SortOrder No
ref_id SortOrder No
ref_type SortOrder No
created_at SortOrder No
_count AttachmentCountOrderByAggregateInput No
_avg AttachmentAvgOrderByAggregateInput No
_max AttachmentMaxOrderByAggregateInput No
_min AttachmentMinOrderByAggregateInput No
_sum AttachmentSumOrderByAggregateInput No


WishlistWhereInput

Name Type Nullable
AND WishlistWhereInput | WishlistWhereInput[] No
OR WishlistWhereInput[] No
NOT WishlistWhereInput | WishlistWhereInput[] No
id IntFilter | Int No
shop_id IntFilter | Int No
element_id IntFilter | Int No
element_type EnumElementTypeFilter | ElementType No
created_at DateTimeFilter | DateTime No
shop ShopRelationFilter | ShopWhereInput | Null Yes
element ElementRelationFilter | ElementWhereInput | Null Yes

WishlistOrderByWithRelationInput

Name Type Nullable
id SortOrder No
shop_id SortOrder No
element_id SortOrder No
element_type SortOrder No
created_at SortOrder No
shop ShopOrderByWithRelationInput No
element ElementOrderByWithRelationInput No

WishlistWhereUniqueInput

Name Type Nullable
id Int No

WishlistOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
shop_id SortOrder No
element_id SortOrder No
element_type SortOrder No
created_at SortOrder No
_count WishlistCountOrderByAggregateInput No
_avg WishlistAvgOrderByAggregateInput No
_max WishlistMaxOrderByAggregateInput No
_min WishlistMinOrderByAggregateInput No
_sum WishlistSumOrderByAggregateInput No


BookmarkWhereInput

Name Type Nullable
AND BookmarkWhereInput | BookmarkWhereInput[] No
OR BookmarkWhereInput[] No
NOT BookmarkWhereInput | BookmarkWhereInput[] No
id IntFilter | Int No
shop_id IntFilter | Int No
element_id IntFilter | Int No
element_type EnumElementTypeFilter | ElementType No
created_at DateTimeFilter | DateTime No
shop ShopRelationFilter | ShopWhereInput | Null Yes
element ElementRelationFilter | ElementWhereInput | Null Yes

BookmarkOrderByWithRelationInput

Name Type Nullable
id SortOrder No
shop_id SortOrder No
element_id SortOrder No
element_type SortOrder No
created_at SortOrder No
shop ShopOrderByWithRelationInput No
element ElementOrderByWithRelationInput No

BookmarkWhereUniqueInput

Name Type Nullable
id Int No

BookmarkOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
shop_id SortOrder No
element_id SortOrder No
element_type SortOrder No
created_at SortOrder No
_count BookmarkCountOrderByAggregateInput No
_avg BookmarkAvgOrderByAggregateInput No
_max BookmarkMaxOrderByAggregateInput No
_min BookmarkMinOrderByAggregateInput No
_sum BookmarkSumOrderByAggregateInput No


Recent_Used_ElementWhereInput

Name Type Nullable
AND Recent_Used_ElementWhereInput | Recent_Used_ElementWhereInput[] No
OR Recent_Used_ElementWhereInput[] No
NOT Recent_Used_ElementWhereInput | Recent_Used_ElementWhereInput[] No
id IntFilter | Int No
shop_id IntFilter | Int No
element_id IntFilter | Int No
element_type EnumElementTypeFilter | ElementType No
created_at DateTimeFilter | DateTime No
shop ShopRelationFilter | ShopWhereInput | Null Yes
element ElementRelationFilter | ElementWhereInput | Null Yes

Recent_Used_ElementOrderByWithRelationInput

Name Type Nullable
id SortOrder No
shop_id SortOrder No
element_id SortOrder No
element_type SortOrder No
created_at SortOrder No
shop ShopOrderByWithRelationInput No
element ElementOrderByWithRelationInput No

Recent_Used_ElementWhereUniqueInput

Name Type Nullable
id Int No

Recent_Used_ElementOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
shop_id SortOrder No
element_id SortOrder No
element_type SortOrder No
created_at SortOrder No
_count Recent_Used_ElementCountOrderByAggregateInput No
_avg Recent_Used_ElementAvgOrderByAggregateInput No
_max Recent_Used_ElementMaxOrderByAggregateInput No
_min Recent_Used_ElementMinOrderByAggregateInput No
_sum Recent_Used_ElementSumOrderByAggregateInput No


Support_TicketWhereInput

Name Type Nullable
AND Support_TicketWhereInput | Support_TicketWhereInput[] No
OR Support_TicketWhereInput[] No
NOT Support_TicketWhereInput | Support_TicketWhereInput[] No
id IntFilter | Int No
uuid StringFilter | String No
user_id IntFilter | Int No
ref_id IntFilter | Int No
ref_type EnumSupportRefTypeFilter | SupportRefType No
criteria EnumSupportCriteriaFilter | SupportCriteria No
reason StringFilter | String No
description StringFilter | String No
status EnumSupportStatusNullableFilter | SupportStatus | Null Yes
label EnumSupportLabelNullableFilter | SupportLabel | Null Yes
assignee IntNullableFilter | Int | Null Yes
assigned_at DateTimeNullableFilter | DateTime | Null Yes
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
user UserRelationFilter | UserWhereInput | Null Yes
ticket_messages Ticket_MessageListRelationFilter No

Support_TicketOrderByWithRelationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
user_id SortOrder No
ref_id SortOrder No
ref_type SortOrder No
criteria SortOrder No
reason SortOrder No
description SortOrder No
status SortOrder | SortOrderInput No
label SortOrder | SortOrderInput No
assignee SortOrder | SortOrderInput No
assigned_at SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No
user UserOrderByWithRelationInput No
ticket_messages Ticket_MessageOrderByRelationAggregateInput No

Support_TicketWhereUniqueInput

Name Type Nullable
id Int No
uuid String No

Support_TicketOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
user_id SortOrder No
ref_id SortOrder No
ref_type SortOrder No
criteria SortOrder No
reason SortOrder No
description SortOrder No
status SortOrder | SortOrderInput No
label SortOrder | SortOrderInput No
assignee SortOrder | SortOrderInput No
assigned_at SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No
_count Support_TicketCountOrderByAggregateInput No
_avg Support_TicketAvgOrderByAggregateInput No
_max Support_TicketMaxOrderByAggregateInput No
_min Support_TicketMinOrderByAggregateInput No
_sum Support_TicketSumOrderByAggregateInput No

Support_TicketScalarWhereWithAggregatesInput

Name Type Nullable
AND Support_TicketScalarWhereWithAggregatesInput | Support_TicketScalarWhereWithAggregatesInput[] No
OR Support_TicketScalarWhereWithAggregatesInput[] No
NOT Support_TicketScalarWhereWithAggregatesInput | Support_TicketScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
uuid StringWithAggregatesFilter | String No
user_id IntWithAggregatesFilter | Int No
ref_id IntWithAggregatesFilter | Int No
ref_type EnumSupportRefTypeWithAggregatesFilter | SupportRefType No
criteria EnumSupportCriteriaWithAggregatesFilter | SupportCriteria No
reason StringWithAggregatesFilter | String No
description StringWithAggregatesFilter | String No
status EnumSupportStatusNullableWithAggregatesFilter | SupportStatus | Null Yes
label EnumSupportLabelNullableWithAggregatesFilter | SupportLabel | Null Yes
assignee IntNullableWithAggregatesFilter | Int | Null Yes
assigned_at DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No

Ticket_MessageWhereInput

Name Type Nullable
AND Ticket_MessageWhereInput | Ticket_MessageWhereInput[] No
OR Ticket_MessageWhereInput[] No
NOT Ticket_MessageWhereInput | Ticket_MessageWhereInput[] No
id IntFilter | Int No
ticket_id IntFilter | Int No
user_id IntFilter | Int No
message StringFilter | String No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
user UserRelationFilter | UserWhereInput | Null Yes
support_ticket Support_TicketRelationFilter | Support_TicketWhereInput | Null Yes

Ticket_MessageOrderByWithRelationInput

Name Type Nullable
id SortOrder No
ticket_id SortOrder No
user_id SortOrder No
message SortOrder No
created_at SortOrder No
updated_at SortOrder No
user UserOrderByWithRelationInput No
support_ticket Support_TicketOrderByWithRelationInput No

Ticket_MessageWhereUniqueInput

Name Type Nullable
id Int No

Ticket_MessageOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
ticket_id SortOrder No
user_id SortOrder No
message SortOrder No
created_at SortOrder No
updated_at SortOrder No
_count Ticket_MessageCountOrderByAggregateInput No
_avg Ticket_MessageAvgOrderByAggregateInput No
_max Ticket_MessageMaxOrderByAggregateInput No
_min Ticket_MessageMinOrderByAggregateInput No
_sum Ticket_MessageSumOrderByAggregateInput No


Contact_RequestWhereInput

Name Type Nullable
AND Contact_RequestWhereInput | Contact_RequestWhereInput[] No
OR Contact_RequestWhereInput[] No
NOT Contact_RequestWhereInput | Contact_RequestWhereInput[] No
id IntFilter | Int No
message StringFilter | String No
name StringFilter | String No
email StringFilter | String No
phone StringFilter | String No
country_code StringFilter | String No
country StringNullableFilter | String | Null Yes
status EnumContactStatusNullableFilter | ContactStatus | Null Yes
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No

Contact_RequestOrderByWithRelationInput

Name Type Nullable
id SortOrder No
message SortOrder No
name SortOrder No
email SortOrder No
phone SortOrder No
country_code SortOrder No
country SortOrder | SortOrderInput No
status SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No

Contact_RequestWhereUniqueInput

Name Type Nullable
id Int No
email String No

Contact_RequestOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
message SortOrder No
name SortOrder No
email SortOrder No
phone SortOrder No
country_code SortOrder No
country SortOrder | SortOrderInput No
status SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No
_count Contact_RequestCountOrderByAggregateInput No
_avg Contact_RequestAvgOrderByAggregateInput No
_max Contact_RequestMaxOrderByAggregateInput No
_min Contact_RequestMinOrderByAggregateInput No
_sum Contact_RequestSumOrderByAggregateInput No

Contact_RequestScalarWhereWithAggregatesInput

Name Type Nullable
AND Contact_RequestScalarWhereWithAggregatesInput | Contact_RequestScalarWhereWithAggregatesInput[] No
OR Contact_RequestScalarWhereWithAggregatesInput[] No
NOT Contact_RequestScalarWhereWithAggregatesInput | Contact_RequestScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
message StringWithAggregatesFilter | String No
name StringWithAggregatesFilter | String No
email StringWithAggregatesFilter | String No
phone StringWithAggregatesFilter | String No
country_code StringWithAggregatesFilter | String No
country StringNullableWithAggregatesFilter | String | Null Yes
status EnumContactStatusNullableWithAggregatesFilter | ContactStatus | Null Yes
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No

Team_MemberWhereInput

Name Type Nullable
AND Team_MemberWhereInput | Team_MemberWhereInput[] No
OR Team_MemberWhereInput[] No
NOT Team_MemberWhereInput | Team_MemberWhereInput[] No
id IntFilter | Int No
user_id IntFilter | Int No
role EnumTeamMemberRoleFilter | TeamMemberRole No
designation StringNullableFilter | String | Null Yes
badge StringNullableFilter | String | Null Yes
invited_by IntNullableFilter | Int | Null Yes
onboarded_at DateTimeNullableFilter | DateTime | Null Yes
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
user UserRelationFilter | UserWhereInput | Null Yes

Team_MemberOrderByWithRelationInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
role SortOrder No
designation SortOrder | SortOrderInput No
badge SortOrder | SortOrderInput No
invited_by SortOrder | SortOrderInput No
onboarded_at SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No
user UserOrderByWithRelationInput No

Team_MemberWhereUniqueInput

Name Type Nullable
id Int No

Team_MemberOrderByWithAggregationInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
role SortOrder No
designation SortOrder | SortOrderInput No
badge SortOrder | SortOrderInput No
invited_by SortOrder | SortOrderInput No
onboarded_at SortOrder | SortOrderInput No
created_at SortOrder No
updated_at SortOrder No
_count Team_MemberCountOrderByAggregateInput No
_avg Team_MemberAvgOrderByAggregateInput No
_max Team_MemberMaxOrderByAggregateInput No
_min Team_MemberMinOrderByAggregateInput No
_sum Team_MemberSumOrderByAggregateInput No

Team_MemberScalarWhereWithAggregatesInput

Name Type Nullable
AND Team_MemberScalarWhereWithAggregatesInput | Team_MemberScalarWhereWithAggregatesInput[] No
OR Team_MemberScalarWhereWithAggregatesInput[] No
NOT Team_MemberScalarWhereWithAggregatesInput | Team_MemberScalarWhereWithAggregatesInput[] No
id IntWithAggregatesFilter | Int No
user_id IntWithAggregatesFilter | Int No
role EnumTeamMemberRoleWithAggregatesFilter | TeamMemberRole No
designation StringNullableWithAggregatesFilter | String | Null Yes
badge StringNullableWithAggregatesFilter | String | Null Yes
invited_by IntNullableWithAggregatesFilter | Int | Null Yes
onboarded_at DateTimeNullableWithAggregatesFilter | DateTime | Null Yes
created_at DateTimeWithAggregatesFilter | DateTime No
updated_at DateTimeWithAggregatesFilter | DateTime No

UserCreateInput

Name Type Nullable
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopCreateNestedManyWithoutUserInput No
bundles BundleCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementCreateNestedManyWithoutUserInput No
elements ElementCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanCreateNestedManyWithoutUserInput No
faqs FaqCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryCreateNestedManyWithoutUserInput No
categories CategoryCreateNestedManyWithoutUserInput No
tags TagCreateNestedManyWithoutUserInput No
support_tickets Support_TicketCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageCreateNestedManyWithoutUserInput No
affiliators AffiliatorCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput No
coupons CouponCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodCreateNestedManyWithoutUserInput No
team_members Team_MemberCreateNestedManyWithoutUserInput No

UserUncheckedCreateInput

Name Type Nullable
id Int No
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopUncheckedCreateNestedManyWithoutUserInput No
bundles BundleUncheckedCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementUncheckedCreateNestedManyWithoutUserInput No
elements ElementUncheckedCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanUncheckedCreateNestedManyWithoutUserInput No
faqs FaqUncheckedCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryUncheckedCreateNestedManyWithoutUserInput No
categories CategoryUncheckedCreateNestedManyWithoutUserInput No
tags TagUncheckedCreateNestedManyWithoutUserInput No
support_tickets Support_TicketUncheckedCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageUncheckedCreateNestedManyWithoutUserInput No
affiliators AffiliatorUncheckedCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutAssigned_userInput No
coupons CouponUncheckedCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodUncheckedCreateNestedManyWithoutUserInput No
team_members Team_MemberUncheckedCreateNestedManyWithoutUserInput No

UserUpdateInput

Name Type Nullable
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUpdateManyWithoutUserNestedInput No
bundles BundleUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUpdateManyWithoutUserNestedInput No
elements ElementUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUpdateManyWithoutUserNestedInput No
faqs FaqUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUpdateManyWithoutUserNestedInput No
categories CategoryUpdateManyWithoutUserNestedInput No
tags TagUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUpdateManyWithoutUserNestedInput No
team_members Team_MemberUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUncheckedUpdateManyWithoutUserNestedInput No
bundles BundleUncheckedUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUncheckedUpdateManyWithoutUserNestedInput No
elements ElementUncheckedUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUncheckedUpdateManyWithoutUserNestedInput No
faqs FaqUncheckedUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUncheckedUpdateManyWithoutUserNestedInput No
categories CategoryUncheckedUpdateManyWithoutUserNestedInput No
tags TagUncheckedUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUncheckedUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUncheckedUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUncheckedUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUncheckedUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUncheckedUpdateManyWithoutUserNestedInput No
team_members Team_MemberUncheckedUpdateManyWithoutUserNestedInput No

UserCreateManyInput

Name Type Nullable
id Int No
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

UserUpdateManyMutationInput

Name Type Nullable
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

UserUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

ShopCreateInput

Name Type Nullable
uuid String No
shopify_shop_id Int No
name String No
domain String No
status ShopStatus No
created_at DateTime No
updated_at DateTime No
user UserCreateNestedOneWithoutShopsInput No
current_subscription Shop_SubscriptionCreateNestedOneWithoutShopsInput No
orders OrderCreateNestedManyWithoutShopInput No
bookmarked_elements BookmarkCreateNestedManyWithoutShopInput No
wishlisted_elements WishlistCreateNestedManyWithoutShopInput No
recent_used_elements Recent_Used_ElementCreateNestedManyWithoutShopInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutShopInput No

ShopUncheckedCreateInput

Name Type Nullable
id Int No
uuid String No
user_id Int No
shopify_shop_id Int No
name String No
domain String No
status ShopStatus No
subscription_id Int | Null Yes
created_at DateTime No
updated_at DateTime No
orders OrderUncheckedCreateNestedManyWithoutShopInput No
bookmarked_elements BookmarkUncheckedCreateNestedManyWithoutShopInput No
wishlisted_elements WishlistUncheckedCreateNestedManyWithoutShopInput No
recent_used_elements Recent_Used_ElementUncheckedCreateNestedManyWithoutShopInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutShopInput No

ShopUpdateInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
shopify_shop_id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
domain String | StringFieldUpdateOperationsInput No
status ShopStatus | EnumShopStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneWithoutShopsNestedInput No
current_subscription Shop_SubscriptionUpdateOneWithoutShopsNestedInput No
orders OrderUpdateManyWithoutShopNestedInput No
bookmarked_elements BookmarkUpdateManyWithoutShopNestedInput No
wishlisted_elements WishlistUpdateManyWithoutShopNestedInput No
recent_used_elements Recent_Used_ElementUpdateManyWithoutShopNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutShopNestedInput No

ShopUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
shopify_shop_id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
domain String | StringFieldUpdateOperationsInput No
status ShopStatus | EnumShopStatusFieldUpdateOperationsInput No
subscription_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
orders OrderUncheckedUpdateManyWithoutShopNestedInput No
bookmarked_elements BookmarkUncheckedUpdateManyWithoutShopNestedInput No
wishlisted_elements WishlistUncheckedUpdateManyWithoutShopNestedInput No
recent_used_elements Recent_Used_ElementUncheckedUpdateManyWithoutShopNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutShopNestedInput No

ShopCreateManyInput

Name Type Nullable
id Int No
uuid String No
user_id Int No
shopify_shop_id Int No
name String No
domain String No
status ShopStatus No
subscription_id Int | Null Yes
created_at DateTime No
updated_at DateTime No

ShopUpdateManyMutationInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
shopify_shop_id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
domain String | StringFieldUpdateOperationsInput No
status ShopStatus | EnumShopStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

ShopUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
shopify_shop_id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
domain String | StringFieldUpdateOperationsInput No
status ShopStatus | EnumShopStatusFieldUpdateOperationsInput No
subscription_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

ElementCreateInput

Name Type Nullable
name String No
slug String No
description String No
featured_image String No
content String No
file_name String No
status GenericStatus No
type ElementType No
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
wishlisted_count Int | Null Yes
bookmarked_count Int | Null Yes
added_theme_count Int | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutElementsInput No
images Element_ImageCreateNestedManyWithoutElementInput No
best_Uses Element_Best_UseCreateNestedManyWithoutElementInput No
tags Element_TagCreateNestedManyWithoutElementInput No
categories Element_CategoryCreateNestedManyWithoutElementInput No
bundles Bundle_ElementCreateNestedManyWithoutElementInput No
wishlisted_elements WishlistCreateNestedManyWithoutElementInput No
bookmarked_elements BookmarkCreateNestedManyWithoutElementInput No
recent_used_elements Recent_Used_ElementCreateNestedManyWithoutElementInput No

ElementUncheckedCreateInput

Name Type Nullable
id Int No
name String No
slug String No
description String No
featured_image String No
content String No
file_name String No
status GenericStatus No
type ElementType No
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
user_id Int No
wishlisted_count Int | Null Yes
bookmarked_count Int | Null Yes
added_theme_count Int | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
images Element_ImageUncheckedCreateNestedManyWithoutElementInput No
best_Uses Element_Best_UseUncheckedCreateNestedManyWithoutElementInput No
tags Element_TagUncheckedCreateNestedManyWithoutElementInput No
categories Element_CategoryUncheckedCreateNestedManyWithoutElementInput No
bundles Bundle_ElementUncheckedCreateNestedManyWithoutElementInput No
wishlisted_elements WishlistUncheckedCreateNestedManyWithoutElementInput No
bookmarked_elements BookmarkUncheckedCreateNestedManyWithoutElementInput No
recent_used_elements Recent_Used_ElementUncheckedCreateNestedManyWithoutElementInput No

ElementUpdateInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
file_name String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type ElementType | EnumElementTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
wishlisted_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
bookmarked_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
added_theme_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutElementsNestedInput No
images Element_ImageUpdateManyWithoutElementNestedInput No
best_Uses Element_Best_UseUpdateManyWithoutElementNestedInput No
tags Element_TagUpdateManyWithoutElementNestedInput No
categories Element_CategoryUpdateManyWithoutElementNestedInput No
bundles Bundle_ElementUpdateManyWithoutElementNestedInput No
wishlisted_elements WishlistUpdateManyWithoutElementNestedInput No
bookmarked_elements BookmarkUpdateManyWithoutElementNestedInput No
recent_used_elements Recent_Used_ElementUpdateManyWithoutElementNestedInput No

ElementUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
file_name String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type ElementType | EnumElementTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
wishlisted_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
bookmarked_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
added_theme_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
images Element_ImageUncheckedUpdateManyWithoutElementNestedInput No
best_Uses Element_Best_UseUncheckedUpdateManyWithoutElementNestedInput No
tags Element_TagUncheckedUpdateManyWithoutElementNestedInput No
categories Element_CategoryUncheckedUpdateManyWithoutElementNestedInput No
bundles Bundle_ElementUncheckedUpdateManyWithoutElementNestedInput No
wishlisted_elements WishlistUncheckedUpdateManyWithoutElementNestedInput No
bookmarked_elements BookmarkUncheckedUpdateManyWithoutElementNestedInput No
recent_used_elements Recent_Used_ElementUncheckedUpdateManyWithoutElementNestedInput No

ElementCreateManyInput

Name Type Nullable
id Int No
name String No
slug String No
description String No
featured_image String No
content String No
file_name String No
status GenericStatus No
type ElementType No
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
user_id Int No
wishlisted_count Int | Null Yes
bookmarked_count Int | Null Yes
added_theme_count Int | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

ElementUpdateManyMutationInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
file_name String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type ElementType | EnumElementTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
wishlisted_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
bookmarked_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
added_theme_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

ElementUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
file_name String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type ElementType | EnumElementTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
wishlisted_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
bookmarked_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
added_theme_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

BundleCreateInput

Name Type Nullable
name String No
slug String No
description String No
featured_image String No
status GenericStatus No
type BundleType No
is_auto_price Boolean | Null Yes
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutBundlesInput No
elements Bundle_ElementCreateNestedManyWithoutBundleInput No
images Bundle_ImageCreateNestedManyWithoutBundleInput No
categories Bundle_CategoryCreateNestedManyWithoutBundleInput No

BundleUncheckedCreateInput

Name Type Nullable
id Int No
name String No
slug String No
description String No
featured_image String No
status GenericStatus No
type BundleType No
is_auto_price Boolean | Null Yes
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
user_id Int No
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
elements Bundle_ElementUncheckedCreateNestedManyWithoutBundleInput No
images Bundle_ImageUncheckedCreateNestedManyWithoutBundleInput No
categories Bundle_CategoryUncheckedCreateNestedManyWithoutBundleInput No

BundleUpdateInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type BundleType | EnumBundleTypeFieldUpdateOperationsInput No
is_auto_price Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutBundlesNestedInput No
elements Bundle_ElementUpdateManyWithoutBundleNestedInput No
images Bundle_ImageUpdateManyWithoutBundleNestedInput No
categories Bundle_CategoryUpdateManyWithoutBundleNestedInput No

BundleUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type BundleType | EnumBundleTypeFieldUpdateOperationsInput No
is_auto_price Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
elements Bundle_ElementUncheckedUpdateManyWithoutBundleNestedInput No
images Bundle_ImageUncheckedUpdateManyWithoutBundleNestedInput No
categories Bundle_CategoryUncheckedUpdateManyWithoutBundleNestedInput No

BundleCreateManyInput

Name Type Nullable
id Int No
name String No
slug String No
description String No
featured_image String No
status GenericStatus No
type BundleType No
is_auto_price Boolean | Null Yes
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
user_id Int No
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

BundleUpdateManyMutationInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type BundleType | EnumBundleTypeFieldUpdateOperationsInput No
is_auto_price Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

BundleUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type BundleType | EnumBundleTypeFieldUpdateOperationsInput No
is_auto_price Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

Bundle_ElementCreateInput

Name Type Nullable
element_type ElementType No
status GenericStatus No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutBundle_elementsInput No
bundle BundleCreateNestedOneWithoutElementsInput No
element ElementCreateNestedOneWithoutBundlesInput No

Bundle_ElementUncheckedCreateInput

Name Type Nullable
id Int No
bundle_id Int No
element_id Int No
element_type ElementType No
status GenericStatus No
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes


Bundle_ElementUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
bundle_id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

Bundle_ElementCreateManyInput

Name Type Nullable
id Int No
bundle_id Int No
element_id Int No
element_type ElementType No
status GenericStatus No
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

Bundle_ElementUpdateManyMutationInput

Name Type Nullable
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

Bundle_ElementUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
bundle_id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

Element_ImageCreateInput

Name Type Nullable
url String No
created_at DateTime No
element ElementCreateNestedOneWithoutImagesInput No

Element_ImageUncheckedCreateInput

Name Type Nullable
id Int No
url String No
element_id Int No
created_at DateTime No

Element_ImageUpdateInput

Name Type Nullable
url String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
element ElementUpdateOneWithoutImagesNestedInput No

Element_ImageUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Element_ImageCreateManyInput

Name Type Nullable
id Int No
url String No
element_id Int No
created_at DateTime No

Element_ImageUpdateManyMutationInput

Name Type Nullable
url String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Element_ImageUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Bundle_ImageCreateInput

Name Type Nullable
url String No
created_at DateTime No
bundle BundleCreateNestedOneWithoutImagesInput No

Bundle_ImageUncheckedCreateInput

Name Type Nullable
id Int No
url String No
bundle_id Int No
created_at DateTime No

Bundle_ImageUpdateInput

Name Type Nullable
url String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
bundle BundleUpdateOneWithoutImagesNestedInput No

Bundle_ImageUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
bundle_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Bundle_ImageCreateManyInput

Name Type Nullable
id Int No
url String No
bundle_id Int No
created_at DateTime No

Bundle_ImageUpdateManyMutationInput

Name Type Nullable
url String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Bundle_ImageUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
bundle_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Element_Best_UseCreateInput

Name Type Nullable
title String No
description String No
created_at DateTime No
updated_at DateTime No
element ElementCreateNestedOneWithoutBest_UsesInput No

Element_Best_UseUncheckedCreateInput

Name Type Nullable
id Int No
element_id Int No
title String No
description String No
created_at DateTime No
updated_at DateTime No

Element_Best_UseUpdateInput

Name Type Nullable
title String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
element ElementUpdateOneWithoutBest_UsesNestedInput No

Element_Best_UseUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Element_Best_UseCreateManyInput

Name Type Nullable
id Int No
element_id Int No
title String No
description String No
created_at DateTime No
updated_at DateTime No

Element_Best_UseUpdateManyMutationInput

Name Type Nullable
title String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Element_Best_UseUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

CategoryCreateInput

Name Type Nullable
name String No
slug String No
description String | Null Yes
type AssetType No
status GenericStatus No
image String | Null Yes
banner String | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutCategoriesInput No
element_categories Element_CategoryCreateNestedManyWithoutCategoryInput No
bundle_categories Bundle_CategoryCreateNestedManyWithoutCategoryInput No

CategoryUncheckedCreateInput

Name Type Nullable
id Int No
name String No
slug String No
description String | Null Yes
type AssetType No
status GenericStatus No
image String | Null Yes
banner String | Null Yes
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
element_categories Element_CategoryUncheckedCreateNestedManyWithoutCategoryInput No
bundle_categories Bundle_CategoryUncheckedCreateNestedManyWithoutCategoryInput No

CategoryUpdateInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutCategoriesNestedInput No
element_categories Element_CategoryUpdateManyWithoutCategoryNestedInput No
bundle_categories Bundle_CategoryUpdateManyWithoutCategoryNestedInput No

CategoryUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
element_categories Element_CategoryUncheckedUpdateManyWithoutCategoryNestedInput No
bundle_categories Bundle_CategoryUncheckedUpdateManyWithoutCategoryNestedInput No

CategoryCreateManyInput

Name Type Nullable
id Int No
name String No
slug String No
description String | Null Yes
type AssetType No
status GenericStatus No
image String | Null Yes
banner String | Null Yes
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

CategoryUpdateManyMutationInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

CategoryUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

Element_CategoryCreateInput

Name Type Nullable
created_at DateTime No
element ElementCreateNestedOneWithoutCategoriesInput No
category CategoryCreateNestedOneWithoutElement_categoriesInput No

Element_CategoryUncheckedCreateInput

Name Type Nullable
id Int No
element_id Int No
category_id Int No
created_at DateTime No

Element_CategoryUpdateInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
element ElementUpdateOneWithoutCategoriesNestedInput No
category CategoryUpdateOneWithoutElement_categoriesNestedInput No

Element_CategoryUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
category_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Element_CategoryCreateManyInput

Name Type Nullable
id Int No
element_id Int No
category_id Int No
created_at DateTime No

Element_CategoryUpdateManyMutationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Element_CategoryUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
category_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Bundle_CategoryCreateInput

Name Type Nullable
created_at DateTime No
bundle BundleCreateNestedOneWithoutCategoriesInput No
category CategoryCreateNestedOneWithoutBundle_categoriesInput No

Bundle_CategoryUncheckedCreateInput

Name Type Nullable
id Int No
bundle_id Int No
category_id Int No
created_at DateTime No

Bundle_CategoryUpdateInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
bundle BundleUpdateOneWithoutCategoriesNestedInput No
category CategoryUpdateOneWithoutBundle_categoriesNestedInput No

Bundle_CategoryUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
bundle_id Int | IntFieldUpdateOperationsInput No
category_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Bundle_CategoryCreateManyInput

Name Type Nullable
id Int No
bundle_id Int No
category_id Int No
created_at DateTime No

Bundle_CategoryUpdateManyMutationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Bundle_CategoryUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
bundle_id Int | IntFieldUpdateOperationsInput No
category_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

TagCreateInput

Name Type Nullable
name String No
slug String No
description String | Null Yes
image String | Null Yes
banner String | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutTagsInput No
elements Element_TagCreateNestedManyWithoutTagInput No

TagUncheckedCreateInput

Name Type Nullable
id Int No
name String No
slug String No
user_id Int No
description String | Null Yes
image String | Null Yes
banner String | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
elements Element_TagUncheckedCreateNestedManyWithoutTagInput No

TagUpdateInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutTagsNestedInput No
elements Element_TagUpdateManyWithoutTagNestedInput No

TagUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
elements Element_TagUncheckedUpdateManyWithoutTagNestedInput No

TagCreateManyInput

Name Type Nullable
id Int No
name String No
slug String No
user_id Int No
description String | Null Yes
image String | Null Yes
banner String | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

TagUpdateManyMutationInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

TagUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

Element_TagCreateInput

Name Type Nullable
created_at DateTime No
tag TagCreateNestedOneWithoutElementsInput No
element ElementCreateNestedOneWithoutTagsInput No

Element_TagUncheckedCreateInput

Name Type Nullable
id Int No
element_id Int No
tag_id Int No
created_at DateTime No

Element_TagUpdateInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
tag TagUpdateOneWithoutElementsNestedInput No
element ElementUpdateOneWithoutTagsNestedInput No

Element_TagUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
tag_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Element_TagCreateManyInput

Name Type Nullable
id Int No
element_id Int No
tag_id Int No
created_at DateTime No

Element_TagUpdateManyMutationInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Element_TagUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
tag_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

SessionCreateInput

Name Type Nullable
id Int No
shop String No
state String | Null Yes
isOnline Boolean No
scope String No
userId Int | Null Yes

SessionUncheckedCreateInput

Name Type Nullable
id Int No
shop String No
state String | Null Yes
isOnline Boolean No
scope String No
userId Int | Null Yes

SessionUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
shop String | StringFieldUpdateOperationsInput No
state String | NullableStringFieldUpdateOperationsInput | Null Yes
isOnline Boolean | BoolFieldUpdateOperationsInput No
scope String | StringFieldUpdateOperationsInput No
userId Int | NullableIntFieldUpdateOperationsInput | Null Yes

SessionUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
shop String | StringFieldUpdateOperationsInput No
state String | NullableStringFieldUpdateOperationsInput | Null Yes
isOnline Boolean | BoolFieldUpdateOperationsInput No
scope String | StringFieldUpdateOperationsInput No
userId Int | NullableIntFieldUpdateOperationsInput | Null Yes

SessionCreateManyInput

Name Type Nullable
id Int No
shop String No
state String | Null Yes
isOnline Boolean No
scope String No
userId Int | Null Yes

SessionUpdateManyMutationInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
shop String | StringFieldUpdateOperationsInput No
state String | NullableStringFieldUpdateOperationsInput | Null Yes
isOnline Boolean | BoolFieldUpdateOperationsInput No
scope String | StringFieldUpdateOperationsInput No
userId Int | NullableIntFieldUpdateOperationsInput | Null Yes

SessionUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
shop String | StringFieldUpdateOperationsInput No
state String | NullableStringFieldUpdateOperationsInput | Null Yes
isOnline Boolean | BoolFieldUpdateOperationsInput No
scope String | StringFieldUpdateOperationsInput No
userId Int | NullableIntFieldUpdateOperationsInput | Null Yes

OrderCreateInput

Name Type Nullable
uuid String No
asset_type AssetType No
status OrderStatus No
sub_total Decimal No
discounted_amout Decimal | Null Yes
coupon_code String | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
grand_total Decimal No
affiliated_by Int | Null Yes
affiliated_commission Decimal | Null Yes
created_at DateTime No
updated_at DateTime No
shop ShopCreateNestedOneWithoutOrdersInput No
coupon CouponCreateNestedOneWithoutOrdersInput No
order_items Order_ItemCreateNestedManyWithoutOrderInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutOrderInput No

OrderUncheckedCreateInput

Name Type Nullable
id Int No
uuid String No
shop_id Int No
asset_type AssetType No
status OrderStatus No
sub_total Decimal No
discounted_amout Decimal | Null Yes
coupon_id Int | Null Yes
coupon_code String | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
grand_total Decimal No
affiliated_by Int | Null Yes
affiliated_commission Decimal | Null Yes
created_at DateTime No
updated_at DateTime No
order_items Order_ItemUncheckedCreateNestedManyWithoutOrderInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutOrderInput No

OrderUpdateInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
asset_type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
status OrderStatus | EnumOrderStatusFieldUpdateOperationsInput No
sub_total Decimal | DecimalFieldUpdateOperationsInput No
discounted_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
grand_total Decimal | DecimalFieldUpdateOperationsInput No
affiliated_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
affiliated_commission Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
shop ShopUpdateOneWithoutOrdersNestedInput No
coupon CouponUpdateOneWithoutOrdersNestedInput No
order_items Order_ItemUpdateManyWithoutOrderNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutOrderNestedInput No

OrderUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
shop_id Int | IntFieldUpdateOperationsInput No
asset_type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
status OrderStatus | EnumOrderStatusFieldUpdateOperationsInput No
sub_total Decimal | DecimalFieldUpdateOperationsInput No
discounted_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
grand_total Decimal | DecimalFieldUpdateOperationsInput No
affiliated_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
affiliated_commission Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
order_items Order_ItemUncheckedUpdateManyWithoutOrderNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutOrderNestedInput No

OrderCreateManyInput

Name Type Nullable
id Int No
uuid String No
shop_id Int No
asset_type AssetType No
status OrderStatus No
sub_total Decimal No
discounted_amout Decimal | Null Yes
coupon_id Int | Null Yes
coupon_code String | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
grand_total Decimal No
affiliated_by Int | Null Yes
affiliated_commission Decimal | Null Yes
created_at DateTime No
updated_at DateTime No

OrderUpdateManyMutationInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
asset_type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
status OrderStatus | EnumOrderStatusFieldUpdateOperationsInput No
sub_total Decimal | DecimalFieldUpdateOperationsInput No
discounted_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
grand_total Decimal | DecimalFieldUpdateOperationsInput No
affiliated_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
affiliated_commission Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

OrderUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
shop_id Int | IntFieldUpdateOperationsInput No
asset_type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
status OrderStatus | EnumOrderStatusFieldUpdateOperationsInput No
sub_total Decimal | DecimalFieldUpdateOperationsInput No
discounted_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
grand_total Decimal | DecimalFieldUpdateOperationsInput No
affiliated_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
affiliated_commission Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Order_ItemCreateInput

Name Type Nullable
asset_id Int No
asset_type AssetType No
price Decimal No
discounted_price Decimal | Null Yes
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
order_bundle_id Int | Null Yes
order OrderCreateNestedOneWithoutOrder_itemsInput No

Order_ItemUncheckedCreateInput

Name Type Nullable
id Int No
order_id Int No
asset_id Int No
asset_type AssetType No
price Decimal No
discounted_price Decimal | Null Yes
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
order_bundle_id Int | Null Yes


Order_ItemUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
order_id Int | IntFieldUpdateOperationsInput No
asset_id Int | IntFieldUpdateOperationsInput No
asset_type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
order_bundle_id Int | NullableIntFieldUpdateOperationsInput | Null Yes

Order_ItemCreateManyInput

Name Type Nullable
id Int No
order_id Int No
asset_id Int No
asset_type AssetType No
price Decimal No
discounted_price Decimal | Null Yes
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
order_bundle_id Int | Null Yes

Order_ItemUpdateManyMutationInput

Name Type Nullable
asset_id Int | IntFieldUpdateOperationsInput No
asset_type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
order_bundle_id Int | NullableIntFieldUpdateOperationsInput | Null Yes

Order_ItemUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
order_id Int | IntFieldUpdateOperationsInput No
asset_id Int | IntFieldUpdateOperationsInput No
asset_type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
order_bundle_id Int | NullableIntFieldUpdateOperationsInput | Null Yes

CouponCreateInput

Name Type Nullable
code String No
status CouponStatus No
expired_at DateTime | Null Yes
max_total_applied Int | Null Yes
max_applied_by_shop Int | Null Yes
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
min_order_amount Decimal | Null Yes
max_discount_limit Decimal | Null Yes
is_apply_on_asset_discount Boolean | Null Yes
commission_type DiscountType | Null Yes
commission_value Decimal | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
affiliator AffiliatorCreateNestedOneWithoutCouponsInput No
user UserCreateNestedOneWithoutCouponsInput No
orders OrderCreateNestedManyWithoutCouponInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutCouponInput No

CouponUncheckedCreateInput

Name Type Nullable
id Int No
code String No
status CouponStatus No
expired_at DateTime | Null Yes
max_total_applied Int | Null Yes
max_applied_by_shop Int | Null Yes
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
min_order_amount Decimal | Null Yes
max_discount_limit Decimal | Null Yes
is_apply_on_asset_discount Boolean | Null Yes
affiliated_by Int | Null Yes
commission_type DiscountType | Null Yes
commission_value Decimal | Null Yes
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
orders OrderUncheckedCreateNestedManyWithoutCouponInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutCouponInput No

CouponUpdateInput

Name Type Nullable
code String | StringFieldUpdateOperationsInput No
status CouponStatus | EnumCouponStatusFieldUpdateOperationsInput No
expired_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
max_total_applied Int | NullableIntFieldUpdateOperationsInput | Null Yes
max_applied_by_shop Int | NullableIntFieldUpdateOperationsInput | Null Yes
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
min_order_amount Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
max_discount_limit Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
is_apply_on_asset_discount Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
commission_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
affiliator AffiliatorUpdateOneWithoutCouponsNestedInput No
user UserUpdateOneWithoutCouponsNestedInput No
orders OrderUpdateManyWithoutCouponNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutCouponNestedInput No

CouponUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
status CouponStatus | EnumCouponStatusFieldUpdateOperationsInput No
expired_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
max_total_applied Int | NullableIntFieldUpdateOperationsInput | Null Yes
max_applied_by_shop Int | NullableIntFieldUpdateOperationsInput | Null Yes
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
min_order_amount Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
max_discount_limit Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
is_apply_on_asset_discount Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
affiliated_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
commission_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
orders OrderUncheckedUpdateManyWithoutCouponNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutCouponNestedInput No

CouponCreateManyInput

Name Type Nullable
id Int No
code String No
status CouponStatus No
expired_at DateTime | Null Yes
max_total_applied Int | Null Yes
max_applied_by_shop Int | Null Yes
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
min_order_amount Decimal | Null Yes
max_discount_limit Decimal | Null Yes
is_apply_on_asset_discount Boolean | Null Yes
affiliated_by Int | Null Yes
commission_type DiscountType | Null Yes
commission_value Decimal | Null Yes
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

CouponUpdateManyMutationInput

Name Type Nullable
code String | StringFieldUpdateOperationsInput No
status CouponStatus | EnumCouponStatusFieldUpdateOperationsInput No
expired_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
max_total_applied Int | NullableIntFieldUpdateOperationsInput | Null Yes
max_applied_by_shop Int | NullableIntFieldUpdateOperationsInput | Null Yes
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
min_order_amount Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
max_discount_limit Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
is_apply_on_asset_discount Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
commission_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

CouponUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
status CouponStatus | EnumCouponStatusFieldUpdateOperationsInput No
expired_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
max_total_applied Int | NullableIntFieldUpdateOperationsInput | Null Yes
max_applied_by_shop Int | NullableIntFieldUpdateOperationsInput | Null Yes
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
min_order_amount Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
max_discount_limit Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
is_apply_on_asset_discount Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
affiliated_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
commission_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

AffiliatorCreateInput

Name Type Nullable
uuid String No
invited_by Int | Null Yes
type AffiliatorType No
type_other String | Null Yes
status AffiliatorStatus No
total_earned Decimal | Null Yes
total_paid Decimal | Null Yes
current_coupon_id Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutAffiliatorsInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestCreateNestedManyWithoutAffiliatorInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutAffiliatorInput No
coupons CouponCreateNestedManyWithoutAffiliatorInput No

AffiliatorUncheckedCreateInput

Name Type Nullable
id Int No
uuid String No
user_id Int No
invited_by Int | Null Yes
type AffiliatorType No
type_other String | Null Yes
status AffiliatorStatus No
total_earned Decimal | Null Yes
total_paid Decimal | Null Yes
current_coupon_id Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutAffiliatorInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutAffiliatorInput No
coupons CouponUncheckedCreateNestedManyWithoutAffiliatorInput No

AffiliatorUpdateInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
invited_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
type AffiliatorType | EnumAffiliatorTypeFieldUpdateOperationsInput No
type_other String | NullableStringFieldUpdateOperationsInput | Null Yes
status AffiliatorStatus | EnumAffiliatorStatusFieldUpdateOperationsInput No
total_earned Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
total_paid Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
current_coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutAffiliatorsNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUpdateManyWithoutAffiliatorNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutAffiliatorNestedInput No
coupons CouponUpdateManyWithoutAffiliatorNestedInput No

AffiliatorUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
invited_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
type AffiliatorType | EnumAffiliatorTypeFieldUpdateOperationsInput No
type_other String | NullableStringFieldUpdateOperationsInput | Null Yes
status AffiliatorStatus | EnumAffiliatorStatusFieldUpdateOperationsInput No
total_earned Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
total_paid Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
current_coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutAffiliatorNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutAffiliatorNestedInput No
coupons CouponUncheckedUpdateManyWithoutAffiliatorNestedInput No

AffiliatorCreateManyInput

Name Type Nullable
id Int No
uuid String No
user_id Int No
invited_by Int | Null Yes
type AffiliatorType No
type_other String | Null Yes
status AffiliatorStatus No
total_earned Decimal | Null Yes
total_paid Decimal | Null Yes
current_coupon_id Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

AffiliatorUpdateManyMutationInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
invited_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
type AffiliatorType | EnumAffiliatorTypeFieldUpdateOperationsInput No
type_other String | NullableStringFieldUpdateOperationsInput | Null Yes
status AffiliatorStatus | EnumAffiliatorStatusFieldUpdateOperationsInput No
total_earned Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
total_paid Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
current_coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

AffiliatorUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
invited_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
type AffiliatorType | EnumAffiliatorTypeFieldUpdateOperationsInput No
type_other String | NullableStringFieldUpdateOperationsInput | Null Yes
status AffiliatorStatus | EnumAffiliatorStatusFieldUpdateOperationsInput No
total_earned Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
total_paid Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
current_coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

Affiliator_CommissionCreateInput

Name Type Nullable
uuid String No
coupon_code String | Null Yes
order_amout Decimal | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
commission_type DiscountType No
commission_value Decimal No
amount Decimal No
status CommissionStatus No
created_at DateTime No
updated_at DateTime No
affiliator AffiliatorCreateNestedOneWithoutAffiliator_commissionsInput No
user UserCreateNestedOneWithoutAffiliator_commissionsInput No
order OrderCreateNestedOneWithoutAffiliator_commissionsInput No
shop ShopCreateNestedOneWithoutAffiliator_commissionsInput No
coupon CouponCreateNestedOneWithoutAffiliator_commissionsInput No

Affiliator_CommissionUncheckedCreateInput

Name Type Nullable
id Int No
uuid String No
affiliator_id Int No
user_id Int No
order_id Int | Null Yes
shop_id Int | Null Yes
coupon_id Int | Null Yes
coupon_code String | Null Yes
order_amout Decimal | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
commission_type DiscountType No
commission_value Decimal No
amount Decimal No
status CommissionStatus No
created_at DateTime No
updated_at DateTime No

Affiliator_CommissionUpdateInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
order_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
commission_value Decimal | DecimalFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
status CommissionStatus | EnumCommissionStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
affiliator AffiliatorUpdateOneWithoutAffiliator_commissionsNestedInput No
user UserUpdateOneWithoutAffiliator_commissionsNestedInput No
order OrderUpdateOneWithoutAffiliator_commissionsNestedInput No
shop ShopUpdateOneWithoutAffiliator_commissionsNestedInput No
coupon CouponUpdateOneWithoutAffiliator_commissionsNestedInput No

Affiliator_CommissionUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
affiliator_id Int | IntFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
order_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
shop_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
order_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
commission_value Decimal | DecimalFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
status CommissionStatus | EnumCommissionStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Affiliator_CommissionCreateManyInput

Name Type Nullable
id Int No
uuid String No
affiliator_id Int No
user_id Int No
order_id Int | Null Yes
shop_id Int | Null Yes
coupon_id Int | Null Yes
coupon_code String | Null Yes
order_amout Decimal | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
commission_type DiscountType No
commission_value Decimal No
amount Decimal No
status CommissionStatus No
created_at DateTime No
updated_at DateTime No

Affiliator_CommissionUpdateManyMutationInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
order_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
commission_value Decimal | DecimalFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
status CommissionStatus | EnumCommissionStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Affiliator_CommissionUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
affiliator_id Int | IntFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
order_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
shop_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
order_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
commission_value Decimal | DecimalFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
status CommissionStatus | EnumCommissionStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Affiliator_Withdraw_RequestCreateInput

Name Type Nullable
uuid String No
status CommissionWithdrawStatus No
amount Decimal No
payment_method PaymentMethod No
payment_method_details JsonNullValueInput | Json No
note String | Null Yes
reject_reason String | Null Yes
created_at DateTime No
updated_at DateTime No
affiliator AffiliatorCreateNestedOneWithoutAffiliator_withdraw_requestsInput No
payment_method_detail User_Pament_MethodCreateNestedOneWithoutAffiliator_withdraw_requestsInput No
assigned_user UserCreateNestedOneWithoutAffiliator_withdraw_requestsInput No

Affiliator_Withdraw_RequestUncheckedCreateInput

Name Type Nullable
id Int No
uuid String No
affiliator_id Int No
status CommissionWithdrawStatus No
amount Decimal No
payment_method_id Int No
payment_method PaymentMethod No
payment_method_details JsonNullValueInput | Json No
assignee Int | Null Yes
note String | Null Yes
reject_reason String | Null Yes
created_at DateTime No
updated_at DateTime No

Affiliator_Withdraw_RequestUpdateInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
status CommissionWithdrawStatus | EnumCommissionWithdrawStatusFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
payment_method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
payment_method_details JsonNullValueInput | Json No
note String | NullableStringFieldUpdateOperationsInput | Null Yes
reject_reason String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
affiliator AffiliatorUpdateOneWithoutAffiliator_withdraw_requestsNestedInput No
payment_method_detail User_Pament_MethodUpdateOneWithoutAffiliator_withdraw_requestsNestedInput No
assigned_user UserUpdateOneWithoutAffiliator_withdraw_requestsNestedInput No

Affiliator_Withdraw_RequestUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
affiliator_id Int | IntFieldUpdateOperationsInput No
status CommissionWithdrawStatus | EnumCommissionWithdrawStatusFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
payment_method_id Int | IntFieldUpdateOperationsInput No
payment_method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
payment_method_details JsonNullValueInput | Json No
assignee Int | NullableIntFieldUpdateOperationsInput | Null Yes
note String | NullableStringFieldUpdateOperationsInput | Null Yes
reject_reason String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Affiliator_Withdraw_RequestCreateManyInput

Name Type Nullable
id Int No
uuid String No
affiliator_id Int No
status CommissionWithdrawStatus No
amount Decimal No
payment_method_id Int No
payment_method PaymentMethod No
payment_method_details JsonNullValueInput | Json No
assignee Int | Null Yes
note String | Null Yes
reject_reason String | Null Yes
created_at DateTime No
updated_at DateTime No

Affiliator_Withdraw_RequestUpdateManyMutationInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
status CommissionWithdrawStatus | EnumCommissionWithdrawStatusFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
payment_method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
payment_method_details JsonNullValueInput | Json No
note String | NullableStringFieldUpdateOperationsInput | Null Yes
reject_reason String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Affiliator_Withdraw_RequestUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
affiliator_id Int | IntFieldUpdateOperationsInput No
status CommissionWithdrawStatus | EnumCommissionWithdrawStatusFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
payment_method_id Int | IntFieldUpdateOperationsInput No
payment_method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
payment_method_details JsonNullValueInput | Json No
assignee Int | NullableIntFieldUpdateOperationsInput | Null Yes
note String | NullableStringFieldUpdateOperationsInput | Null Yes
reject_reason String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

User_Pament_MethodCreateInput

Name Type Nullable
method PaymentMethod No
details JsonNullValueInput | Json No
is_default Boolean No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
user UserCreateNestedOneWithoutUser_pament_methodsInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestCreateNestedManyWithoutPayment_method_detailInput No

User_Pament_MethodUncheckedCreateInput

Name Type Nullable
id Int No
user_id Int No
method PaymentMethod No
details JsonNullValueInput | Json No
is_default Boolean No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutPayment_method_detailInput No

User_Pament_MethodUpdateInput

Name Type Nullable
method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
details JsonNullValueInput | Json No
is_default Boolean | BoolFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutUser_pament_methodsNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUpdateManyWithoutPayment_method_detailNestedInput No

User_Pament_MethodUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
details JsonNullValueInput | Json No
is_default Boolean | BoolFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutPayment_method_detailNestedInput No

User_Pament_MethodCreateManyInput

Name Type Nullable
id Int No
user_id Int No
method PaymentMethod No
details JsonNullValueInput | Json No
is_default Boolean No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes

User_Pament_MethodUpdateManyMutationInput

Name Type Nullable
method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
details JsonNullValueInput | Json No
is_default Boolean | BoolFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

User_Pament_MethodUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
details JsonNullValueInput | Json No
is_default Boolean | BoolFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

Pricing_PlanCreateInput

Name Type Nullable
name String No
tagline String No
description String No
type PricingPlanType No
is_recommended Boolean No
is_popular Boolean No
price Decimal No
discounted_price Decimal | Null Yes
yearly_discounted_price Decimal | Null Yes
trial_period Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutPricing_plansInput No
subscriptions Shop_SubscriptionCreateNestedManyWithoutPlanInput No
pricing_plan_features Pricing_Plan_FeatureCreateNestedManyWithoutPricing_planInput No

Pricing_PlanUncheckedCreateInput

Name Type Nullable
id Int No
name String No
tagline String No
description String No
type PricingPlanType No
is_recommended Boolean No
is_popular Boolean No
price Decimal No
discounted_price Decimal | Null Yes
yearly_discounted_price Decimal | Null Yes
trial_period Int | Null Yes
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
subscriptions Shop_SubscriptionUncheckedCreateNestedManyWithoutPlanInput No
pricing_plan_features Pricing_Plan_FeatureUncheckedCreateNestedManyWithoutPricing_planInput No

Pricing_PlanUpdateInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
tagline String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
type PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput No
is_recommended Boolean | BoolFieldUpdateOperationsInput No
is_popular Boolean | BoolFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
yearly_discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
trial_period Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutPricing_plansNestedInput No
subscriptions Shop_SubscriptionUpdateManyWithoutPlanNestedInput No
pricing_plan_features Pricing_Plan_FeatureUpdateManyWithoutPricing_planNestedInput No

Pricing_PlanUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
tagline String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
type PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput No
is_recommended Boolean | BoolFieldUpdateOperationsInput No
is_popular Boolean | BoolFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
yearly_discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
trial_period Int | NullableIntFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
subscriptions Shop_SubscriptionUncheckedUpdateManyWithoutPlanNestedInput No
pricing_plan_features Pricing_Plan_FeatureUncheckedUpdateManyWithoutPricing_planNestedInput No

Pricing_PlanCreateManyInput

Name Type Nullable
id Int No
name String No
tagline String No
description String No
type PricingPlanType No
is_recommended Boolean No
is_popular Boolean No
price Decimal No
discounted_price Decimal | Null Yes
yearly_discounted_price Decimal | Null Yes
trial_period Int | Null Yes
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

Pricing_PlanUpdateManyMutationInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
tagline String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
type PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput No
is_recommended Boolean | BoolFieldUpdateOperationsInput No
is_popular Boolean | BoolFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
yearly_discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
trial_period Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

Pricing_PlanUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
tagline String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
type PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput No
is_recommended Boolean | BoolFieldUpdateOperationsInput No
is_popular Boolean | BoolFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
yearly_discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
trial_period Int | NullableIntFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

Pricing_Plan_FeatureCreateInput

Name Type Nullable
title String No
type String | Null Yes
description String | Null Yes
pricing_plan Pricing_PlanCreateNestedOneWithoutPricing_plan_featuresInput No

Pricing_Plan_FeatureUncheckedCreateInput

Name Type Nullable
id Int No
plan_id Int No
title String No
type String | Null Yes
description String | Null Yes

Pricing_Plan_FeatureUpdateInput

Name Type Nullable
title String | StringFieldUpdateOperationsInput No
type String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes
pricing_plan Pricing_PlanUpdateOneWithoutPricing_plan_featuresNestedInput No

Pricing_Plan_FeatureUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
plan_id Int | IntFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
type String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes

Pricing_Plan_FeatureCreateManyInput

Name Type Nullable
id Int No
plan_id Int No
title String No
type String | Null Yes
description String | Null Yes

Pricing_Plan_FeatureUpdateManyMutationInput

Name Type Nullable
title String | StringFieldUpdateOperationsInput No
type String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes

Pricing_Plan_FeatureUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
plan_id Int | IntFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
type String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes

Shop_SubscriptionCreateInput

Name Type Nullable
uuid String No
shop_id Int No
plan_type PricingPlanType No
status SubscriptionStatus No
created_at DateTime No
ended_at DateTime | Null Yes
ended_type SubscriptionEndedType | Null Yes
updated_at DateTime No
amount Decimal No
payment_method PaymentMethod No
plan Pricing_PlanCreateNestedOneWithoutSubscriptionsInput No
shops ShopCreateNestedManyWithoutCurrent_subscriptionInput No

Shop_SubscriptionUncheckedCreateInput

Name Type Nullable
id Int No
uuid String No
shop_id Int No
plan_id Int No
plan_type PricingPlanType No
status SubscriptionStatus No
created_at DateTime No
ended_at DateTime | Null Yes
ended_type SubscriptionEndedType | Null Yes
updated_at DateTime No
amount Decimal No
payment_method PaymentMethod No
shops ShopUncheckedCreateNestedManyWithoutCurrent_subscriptionInput No

Shop_SubscriptionUpdateInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
shop_id Int | IntFieldUpdateOperationsInput No
plan_type PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput No
status SubscriptionStatus | EnumSubscriptionStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
ended_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
ended_type SubscriptionEndedType | NullableEnumSubscriptionEndedTypeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
payment_method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
plan Pricing_PlanUpdateOneWithoutSubscriptionsNestedInput No
shops ShopUpdateManyWithoutCurrent_subscriptionNestedInput No

Shop_SubscriptionUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
shop_id Int | IntFieldUpdateOperationsInput No
plan_id Int | IntFieldUpdateOperationsInput No
plan_type PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput No
status SubscriptionStatus | EnumSubscriptionStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
ended_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
ended_type SubscriptionEndedType | NullableEnumSubscriptionEndedTypeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
payment_method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
shops ShopUncheckedUpdateManyWithoutCurrent_subscriptionNestedInput No

Shop_SubscriptionCreateManyInput

Name Type Nullable
id Int No
uuid String No
shop_id Int No
plan_id Int No
plan_type PricingPlanType No
status SubscriptionStatus No
created_at DateTime No
ended_at DateTime | Null Yes
ended_type SubscriptionEndedType | Null Yes
updated_at DateTime No
amount Decimal No
payment_method PaymentMethod No


Shop_SubscriptionUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
shop_id Int | IntFieldUpdateOperationsInput No
plan_id Int | IntFieldUpdateOperationsInput No
plan_type PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput No
status SubscriptionStatus | EnumSubscriptionStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
ended_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
ended_type SubscriptionEndedType | NullableEnumSubscriptionEndedTypeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
payment_method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No

FaqCreateInput

Name Type Nullable
question String No
answer String No
status FaqStatus No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutFaqsInput No
category Faq_CategoryCreateNestedOneWithoutFaqsInput No

FaqUncheckedCreateInput

Name Type Nullable
id Int No
user_id Int No
question String No
answer String No
status FaqStatus No
category_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

FaqUpdateInput

Name Type Nullable
question String | StringFieldUpdateOperationsInput No
answer String | StringFieldUpdateOperationsInput No
status FaqStatus | EnumFaqStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutFaqsNestedInput No
category Faq_CategoryUpdateOneWithoutFaqsNestedInput No

FaqUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
question String | StringFieldUpdateOperationsInput No
answer String | StringFieldUpdateOperationsInput No
status FaqStatus | EnumFaqStatusFieldUpdateOperationsInput No
category_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

FaqCreateManyInput

Name Type Nullable
id Int No
user_id Int No
question String No
answer String No
status FaqStatus No
category_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

FaqUpdateManyMutationInput

Name Type Nullable
question String | StringFieldUpdateOperationsInput No
answer String | StringFieldUpdateOperationsInput No
status FaqStatus | EnumFaqStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

FaqUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
question String | StringFieldUpdateOperationsInput No
answer String | StringFieldUpdateOperationsInput No
status FaqStatus | EnumFaqStatusFieldUpdateOperationsInput No
category_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

Faq_CategoryCreateInput

Name Type Nullable
name String No
description String | Null Yes
banner String | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutFaq_categoriesInput No
faqs FaqCreateNestedManyWithoutCategoryInput No

Faq_CategoryUncheckedCreateInput

Name Type Nullable
id Int No
name String No
user_id Int No
description String | Null Yes
banner String | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
faqs FaqUncheckedCreateNestedManyWithoutCategoryInput No

Faq_CategoryUpdateInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutFaq_categoriesNestedInput No
faqs FaqUpdateManyWithoutCategoryNestedInput No

Faq_CategoryUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
faqs FaqUncheckedUpdateManyWithoutCategoryNestedInput No

Faq_CategoryCreateManyInput

Name Type Nullable
id Int No
name String No
user_id Int No
description String | Null Yes
banner String | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

Faq_CategoryUpdateManyMutationInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

Faq_CategoryUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

AttachmentCreateInput

Name Type Nullable
uuid String No
url String No
type AttachmentType No
ref_id Int No
ref_type AttachmentRefType No
created_at DateTime No

AttachmentUncheckedCreateInput

Name Type Nullable
id Int No
uuid String No
url String No
type AttachmentType No
ref_id Int No
ref_type AttachmentRefType No
created_at DateTime No



AttachmentCreateManyInput

Name Type Nullable
id Int No
uuid String No
url String No
type AttachmentType No
ref_id Int No
ref_type AttachmentRefType No
created_at DateTime No



WishlistCreateInput

Name Type Nullable
element_type ElementType No
created_at DateTime No
shop ShopCreateNestedOneWithoutWishlisted_elementsInput No
element ElementCreateNestedOneWithoutWishlisted_elementsInput No

WishlistUncheckedCreateInput

Name Type Nullable
id Int No
shop_id Int No
element_id Int No
element_type ElementType No
created_at DateTime No


WishlistUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
shop_id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

WishlistCreateManyInput

Name Type Nullable
id Int No
shop_id Int No
element_id Int No
element_type ElementType No
created_at DateTime No

WishlistUpdateManyMutationInput

Name Type Nullable
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

WishlistUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
shop_id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

BookmarkCreateInput

Name Type Nullable
element_type ElementType No
created_at DateTime No
shop ShopCreateNestedOneWithoutBookmarked_elementsInput No
element ElementCreateNestedOneWithoutBookmarked_elementsInput No

BookmarkUncheckedCreateInput

Name Type Nullable
id Int No
shop_id Int No
element_id Int No
element_type ElementType No
created_at DateTime No


BookmarkUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
shop_id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

BookmarkCreateManyInput

Name Type Nullable
id Int No
shop_id Int No
element_id Int No
element_type ElementType No
created_at DateTime No

BookmarkUpdateManyMutationInput

Name Type Nullable
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

BookmarkUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
shop_id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Recent_Used_ElementCreateInput

Name Type Nullable
element_type ElementType No
created_at DateTime No
shop ShopCreateNestedOneWithoutRecent_used_elementsInput No
element ElementCreateNestedOneWithoutRecent_used_elementsInput No

Recent_Used_ElementUncheckedCreateInput

Name Type Nullable
id Int No
shop_id Int No
element_id Int No
element_type ElementType No
created_at DateTime No


Recent_Used_ElementUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
shop_id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Recent_Used_ElementCreateManyInput

Name Type Nullable
id Int No
shop_id Int No
element_id Int No
element_type ElementType No
created_at DateTime No

Recent_Used_ElementUpdateManyMutationInput

Name Type Nullable
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Recent_Used_ElementUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
shop_id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Support_TicketCreateInput

Name Type Nullable
uuid String No
ref_id Int No
ref_type SupportRefType No
criteria SupportCriteria No
reason String No
description String No
status SupportStatus | Null Yes
label SupportLabel | Null Yes
assignee Int | Null Yes
assigned_at DateTime | Null Yes
created_at DateTime No
updated_at DateTime No
user UserCreateNestedOneWithoutSupport_ticketsInput No
ticket_messages Ticket_MessageCreateNestedManyWithoutSupport_ticketInput No

Support_TicketUncheckedCreateInput

Name Type Nullable
id Int No
uuid String No
user_id Int No
ref_id Int No
ref_type SupportRefType No
criteria SupportCriteria No
reason String No
description String No
status SupportStatus | Null Yes
label SupportLabel | Null Yes
assignee Int | Null Yes
assigned_at DateTime | Null Yes
created_at DateTime No
updated_at DateTime No
ticket_messages Ticket_MessageUncheckedCreateNestedManyWithoutSupport_ticketInput No

Support_TicketUpdateInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
ref_id Int | IntFieldUpdateOperationsInput No
ref_type SupportRefType | EnumSupportRefTypeFieldUpdateOperationsInput No
criteria SupportCriteria | EnumSupportCriteriaFieldUpdateOperationsInput No
reason String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
status SupportStatus | NullableEnumSupportStatusFieldUpdateOperationsInput | Null Yes
label SupportLabel | NullableEnumSupportLabelFieldUpdateOperationsInput | Null Yes
assignee Int | NullableIntFieldUpdateOperationsInput | Null Yes
assigned_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneWithoutSupport_ticketsNestedInput No
ticket_messages Ticket_MessageUpdateManyWithoutSupport_ticketNestedInput No

Support_TicketUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
ref_id Int | IntFieldUpdateOperationsInput No
ref_type SupportRefType | EnumSupportRefTypeFieldUpdateOperationsInput No
criteria SupportCriteria | EnumSupportCriteriaFieldUpdateOperationsInput No
reason String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
status SupportStatus | NullableEnumSupportStatusFieldUpdateOperationsInput | Null Yes
label SupportLabel | NullableEnumSupportLabelFieldUpdateOperationsInput | Null Yes
assignee Int | NullableIntFieldUpdateOperationsInput | Null Yes
assigned_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
ticket_messages Ticket_MessageUncheckedUpdateManyWithoutSupport_ticketNestedInput No

Support_TicketCreateManyInput

Name Type Nullable
id Int No
uuid String No
user_id Int No
ref_id Int No
ref_type SupportRefType No
criteria SupportCriteria No
reason String No
description String No
status SupportStatus | Null Yes
label SupportLabel | Null Yes
assignee Int | Null Yes
assigned_at DateTime | Null Yes
created_at DateTime No
updated_at DateTime No

Support_TicketUpdateManyMutationInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
ref_id Int | IntFieldUpdateOperationsInput No
ref_type SupportRefType | EnumSupportRefTypeFieldUpdateOperationsInput No
criteria SupportCriteria | EnumSupportCriteriaFieldUpdateOperationsInput No
reason String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
status SupportStatus | NullableEnumSupportStatusFieldUpdateOperationsInput | Null Yes
label SupportLabel | NullableEnumSupportLabelFieldUpdateOperationsInput | Null Yes
assignee Int | NullableIntFieldUpdateOperationsInput | Null Yes
assigned_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Support_TicketUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
ref_id Int | IntFieldUpdateOperationsInput No
ref_type SupportRefType | EnumSupportRefTypeFieldUpdateOperationsInput No
criteria SupportCriteria | EnumSupportCriteriaFieldUpdateOperationsInput No
reason String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
status SupportStatus | NullableEnumSupportStatusFieldUpdateOperationsInput | Null Yes
label SupportLabel | NullableEnumSupportLabelFieldUpdateOperationsInput | Null Yes
assignee Int | NullableIntFieldUpdateOperationsInput | Null Yes
assigned_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Ticket_MessageCreateInput

Name Type Nullable
message String No
created_at DateTime No
updated_at DateTime No
user UserCreateNestedOneWithoutTicket_messagesInput No
support_ticket Support_TicketCreateNestedOneWithoutTicket_messagesInput No

Ticket_MessageUncheckedCreateInput

Name Type Nullable
id Int No
ticket_id Int No
user_id Int No
message String No
created_at DateTime No
updated_at DateTime No

Ticket_MessageUpdateInput

Name Type Nullable
message String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneWithoutTicket_messagesNestedInput No
support_ticket Support_TicketUpdateOneWithoutTicket_messagesNestedInput No

Ticket_MessageUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
ticket_id Int | IntFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Ticket_MessageCreateManyInput

Name Type Nullable
id Int No
ticket_id Int No
user_id Int No
message String No
created_at DateTime No
updated_at DateTime No

Ticket_MessageUpdateManyMutationInput

Name Type Nullable
message String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Ticket_MessageUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
ticket_id Int | IntFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Contact_RequestCreateInput

Name Type Nullable
message String No
name String No
email String No
phone String No
country_code String No
country String | Null Yes
status ContactStatus | Null Yes
created_at DateTime No
updated_at DateTime No

Contact_RequestUncheckedCreateInput

Name Type Nullable
id Int No
message String No
name String No
email String No
phone String No
country_code String No
country String | Null Yes
status ContactStatus | Null Yes
created_at DateTime No
updated_at DateTime No

Contact_RequestUpdateInput

Name Type Nullable
message String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
country_code String | StringFieldUpdateOperationsInput No
country String | NullableStringFieldUpdateOperationsInput | Null Yes
status ContactStatus | NullableEnumContactStatusFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Contact_RequestUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
country_code String | StringFieldUpdateOperationsInput No
country String | NullableStringFieldUpdateOperationsInput | Null Yes
status ContactStatus | NullableEnumContactStatusFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Contact_RequestCreateManyInput

Name Type Nullable
id Int No
message String No
name String No
email String No
phone String No
country_code String No
country String | Null Yes
status ContactStatus | Null Yes
created_at DateTime No
updated_at DateTime No

Contact_RequestUpdateManyMutationInput

Name Type Nullable
message String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
country_code String | StringFieldUpdateOperationsInput No
country String | NullableStringFieldUpdateOperationsInput | Null Yes
status ContactStatus | NullableEnumContactStatusFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Contact_RequestUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
phone String | StringFieldUpdateOperationsInput No
country_code String | StringFieldUpdateOperationsInput No
country String | NullableStringFieldUpdateOperationsInput | Null Yes
status ContactStatus | NullableEnumContactStatusFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Team_MemberCreateInput

Name Type Nullable
role TeamMemberRole No
designation String | Null Yes
badge String | Null Yes
invited_by Int | Null Yes
onboarded_at DateTime | Null Yes
created_at DateTime No
updated_at DateTime No
user UserCreateNestedOneWithoutTeam_membersInput No

Team_MemberUncheckedCreateInput

Name Type Nullable
id Int No
user_id Int No
role TeamMemberRole No
designation String | Null Yes
badge String | Null Yes
invited_by Int | Null Yes
onboarded_at DateTime | Null Yes
created_at DateTime No
updated_at DateTime No

Team_MemberUpdateInput

Name Type Nullable
role TeamMemberRole | EnumTeamMemberRoleFieldUpdateOperationsInput No
designation String | NullableStringFieldUpdateOperationsInput | Null Yes
badge String | NullableStringFieldUpdateOperationsInput | Null Yes
invited_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
onboarded_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneWithoutTeam_membersNestedInput No

Team_MemberUncheckedUpdateInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
role TeamMemberRole | EnumTeamMemberRoleFieldUpdateOperationsInput No
designation String | NullableStringFieldUpdateOperationsInput | Null Yes
badge String | NullableStringFieldUpdateOperationsInput | Null Yes
invited_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
onboarded_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Team_MemberCreateManyInput

Name Type Nullable
id Int No
user_id Int No
role TeamMemberRole No
designation String | Null Yes
badge String | Null Yes
invited_by Int | Null Yes
onboarded_at DateTime | Null Yes
created_at DateTime No
updated_at DateTime No

Team_MemberUpdateManyMutationInput

Name Type Nullable
role TeamMemberRole | EnumTeamMemberRoleFieldUpdateOperationsInput No
designation String | NullableStringFieldUpdateOperationsInput | Null Yes
badge String | NullableStringFieldUpdateOperationsInput | Null Yes
invited_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
onboarded_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Team_MemberUncheckedUpdateManyInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
role TeamMemberRole | EnumTeamMemberRoleFieldUpdateOperationsInput No
designation String | NullableStringFieldUpdateOperationsInput | Null Yes
badge String | NullableStringFieldUpdateOperationsInput | Null Yes
invited_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
onboarded_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

IntFilter

Name Type Nullable
equals Int No
in Int | Int No
notIn Int | Int No
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntFilter No

StringFilter

Name Type Nullable
equals String No
in String | String No
notIn String | String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
mode QueryMode No
not String | NestedStringFilter No

StringNullableFilter

Name Type Nullable
equals String | Null Yes
in String | String | Null Yes
notIn String | String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
mode QueryMode No
not String | NestedStringNullableFilter | Null Yes

EnumUserRoleFilter

Name Type Nullable
equals UserRole No
in UserRole[] | UserRole No
notIn UserRole[] | UserRole No
not UserRole | NestedEnumUserRoleFilter No

EnumUserStatusNullableFilter

Name Type Nullable
equals UserStatus | Null Yes
in UserStatus[] | UserStatus | Null Yes
notIn UserStatus[] | UserStatus | Null Yes
not UserStatus | NestedEnumUserStatusNullableFilter | Null Yes

BoolNullableFilter

Name Type Nullable
equals Boolean | Null Yes
not Boolean | NestedBoolNullableFilter | Null Yes

DateTimeNullableFilter

Name Type Nullable
equals DateTime | Null Yes
in DateTime | DateTime | Null Yes
notIn DateTime | DateTime | Null Yes
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeNullableFilter | Null Yes

JsonNullableFilter

Name Type Nullable
equals Json | JsonNullValueFilter No
path String No
string_contains String No
string_starts_with String No
string_ends_with String No
array_contains Json | Null Yes
array_starts_with Json | Null Yes
array_ends_with Json | Null Yes
lt Json No
lte Json No
gt Json No
gte Json No
not Json | JsonNullValueFilter No

DateTimeFilter

Name Type Nullable
equals DateTime No
in DateTime | DateTime No
notIn DateTime | DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeFilter No

IntNullableFilter

Name Type Nullable
equals Int | Null Yes
in Int | Int | Null Yes
notIn Int | Int | Null Yes
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntNullableFilter | Null Yes

ShopListRelationFilter

Name Type Nullable
every ShopWhereInput No
some ShopWhereInput No
none ShopWhereInput No

BundleListRelationFilter

Name Type Nullable
every BundleWhereInput No
some BundleWhereInput No
none BundleWhereInput No

Bundle_ElementListRelationFilter

Name Type Nullable
every Bundle_ElementWhereInput No
some Bundle_ElementWhereInput No
none Bundle_ElementWhereInput No

ElementListRelationFilter

Name Type Nullable
every ElementWhereInput No
some ElementWhereInput No
none ElementWhereInput No

Pricing_PlanListRelationFilter

Name Type Nullable
every Pricing_PlanWhereInput No
some Pricing_PlanWhereInput No
none Pricing_PlanWhereInput No

FaqListRelationFilter

Name Type Nullable
every FaqWhereInput No
some FaqWhereInput No
none FaqWhereInput No

Faq_CategoryListRelationFilter

Name Type Nullable
every Faq_CategoryWhereInput No
some Faq_CategoryWhereInput No
none Faq_CategoryWhereInput No

CategoryListRelationFilter

Name Type Nullable
every CategoryWhereInput No
some CategoryWhereInput No
none CategoryWhereInput No

TagListRelationFilter

Name Type Nullable
every TagWhereInput No
some TagWhereInput No
none TagWhereInput No

Support_TicketListRelationFilter

Name Type Nullable
every Support_TicketWhereInput No
some Support_TicketWhereInput No
none Support_TicketWhereInput No

Ticket_MessageListRelationFilter

Name Type Nullable
every Ticket_MessageWhereInput No
some Ticket_MessageWhereInput No
none Ticket_MessageWhereInput No

AffiliatorListRelationFilter

Name Type Nullable
every AffiliatorWhereInput No
some AffiliatorWhereInput No
none AffiliatorWhereInput No

Affiliator_CommissionListRelationFilter

Name Type Nullable
every Affiliator_CommissionWhereInput No
some Affiliator_CommissionWhereInput No
none Affiliator_CommissionWhereInput No

Affiliator_Withdraw_RequestListRelationFilter

Name Type Nullable
every Affiliator_Withdraw_RequestWhereInput No
some Affiliator_Withdraw_RequestWhereInput No
none Affiliator_Withdraw_RequestWhereInput No

CouponListRelationFilter

Name Type Nullable
every CouponWhereInput No
some CouponWhereInput No
none CouponWhereInput No

User_Pament_MethodListRelationFilter

Name Type Nullable
every User_Pament_MethodWhereInput No
some User_Pament_MethodWhereInput No
none User_Pament_MethodWhereInput No

Team_MemberListRelationFilter

Name Type Nullable
every Team_MemberWhereInput No
some Team_MemberWhereInput No
none Team_MemberWhereInput No

SortOrderInput

Name Type Nullable
sort SortOrder No
nulls NullsOrder No

ShopOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

BundleOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

Bundle_ElementOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ElementOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

Pricing_PlanOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

FaqOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

Faq_CategoryOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

CategoryOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

TagOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

Support_TicketOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

Ticket_MessageOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

AffiliatorOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

Affiliator_CommissionOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

Affiliator_Withdraw_RequestOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

CouponOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

User_Pament_MethodOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

Team_MemberOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

UserCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
first_name SortOrder No
last_name SortOrder No
email SortOrder No
password SortOrder No
phone SortOrder No
profile_photo SortOrder No
role SortOrder No
status SortOrder No
is_verified SortOrder No
is_shopify_user SortOrder No
date_of_birth SortOrder No
country_code SortOrder No
country SortOrder No
address SortOrder No
website_url SortOrder No
social_handles SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

UserAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
deleted_by SortOrder No

UserMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
first_name SortOrder No
last_name SortOrder No
email SortOrder No
password SortOrder No
phone SortOrder No
profile_photo SortOrder No
role SortOrder No
status SortOrder No
is_verified SortOrder No
is_shopify_user SortOrder No
date_of_birth SortOrder No
country_code SortOrder No
country SortOrder No
address SortOrder No
website_url SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

UserMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
first_name SortOrder No
last_name SortOrder No
email SortOrder No
password SortOrder No
phone SortOrder No
profile_photo SortOrder No
role SortOrder No
status SortOrder No
is_verified SortOrder No
is_shopify_user SortOrder No
date_of_birth SortOrder No
country_code SortOrder No
country SortOrder No
address SortOrder No
website_url SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

UserSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
deleted_by SortOrder No

IntWithAggregatesFilter

Name Type Nullable
equals Int No
in Int | Int No
notIn Int | Int No
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No

StringWithAggregatesFilter

Name Type Nullable
equals String No
in String | String No
notIn String | String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
mode QueryMode No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

StringNullableWithAggregatesFilter

Name Type Nullable
equals String | Null Yes
in String | String | Null Yes
notIn String | String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
mode QueryMode No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

EnumUserRoleWithAggregatesFilter

Name Type Nullable
equals UserRole No
in UserRole[] | UserRole No
notIn UserRole[] | UserRole No
not UserRole | NestedEnumUserRoleWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumUserRoleFilter No
_max NestedEnumUserRoleFilter No

EnumUserStatusNullableWithAggregatesFilter

Name Type Nullable
equals UserStatus | Null Yes
in UserStatus[] | UserStatus | Null Yes
notIn UserStatus[] | UserStatus | Null Yes
not UserStatus | NestedEnumUserStatusNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumUserStatusNullableFilter No
_max NestedEnumUserStatusNullableFilter No

BoolNullableWithAggregatesFilter

Name Type Nullable
equals Boolean | Null Yes
not Boolean | NestedBoolNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedBoolNullableFilter No
_max NestedBoolNullableFilter No

DateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | Null Yes
in DateTime | DateTime | Null Yes
notIn DateTime | DateTime | Null Yes
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No

JsonNullableWithAggregatesFilter

Name Type Nullable
equals Json | JsonNullValueFilter No
path String No
string_contains String No
string_starts_with String No
string_ends_with String No
array_contains Json | Null Yes
array_starts_with Json | Null Yes
array_ends_with Json | Null Yes
lt Json No
lte Json No
gt Json No
gte Json No
not Json | JsonNullValueFilter No
_count NestedIntNullableFilter No
_min NestedJsonNullableFilter No
_max NestedJsonNullableFilter No

DateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime No
in DateTime | DateTime No
notIn DateTime | DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

IntNullableWithAggregatesFilter

Name Type Nullable
equals Int | Null Yes
in Int | Int | Null Yes
notIn Int | Int | Null Yes
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

EnumShopStatusFilter

Name Type Nullable
equals ShopStatus No
in ShopStatus[] | ShopStatus No
notIn ShopStatus[] | ShopStatus No
not ShopStatus | NestedEnumShopStatusFilter No

UserRelationFilter

Name Type Nullable
is UserWhereInput | Null Yes
isNot UserWhereInput | Null Yes

Shop_SubscriptionRelationFilter

Name Type Nullable
is Shop_SubscriptionWhereInput | Null Yes
isNot Shop_SubscriptionWhereInput | Null Yes

OrderListRelationFilter

Name Type Nullable
every OrderWhereInput No
some OrderWhereInput No
none OrderWhereInput No

BookmarkListRelationFilter

Name Type Nullable
every BookmarkWhereInput No
some BookmarkWhereInput No
none BookmarkWhereInput No

WishlistListRelationFilter

Name Type Nullable
every WishlistWhereInput No
some WishlistWhereInput No
none WishlistWhereInput No

Recent_Used_ElementListRelationFilter

Name Type Nullable
every Recent_Used_ElementWhereInput No
some Recent_Used_ElementWhereInput No
none Recent_Used_ElementWhereInput No

OrderOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

BookmarkOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

WishlistOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

Recent_Used_ElementOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ShopCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
user_id SortOrder No
shopify_shop_id SortOrder No
name SortOrder No
domain SortOrder No
status SortOrder No
subscription_id SortOrder No
created_at SortOrder No
updated_at SortOrder No

ShopAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
shopify_shop_id SortOrder No
subscription_id SortOrder No

ShopMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
user_id SortOrder No
shopify_shop_id SortOrder No
name SortOrder No
domain SortOrder No
status SortOrder No
subscription_id SortOrder No
created_at SortOrder No
updated_at SortOrder No

ShopMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
user_id SortOrder No
shopify_shop_id SortOrder No
name SortOrder No
domain SortOrder No
status SortOrder No
subscription_id SortOrder No
created_at SortOrder No
updated_at SortOrder No

ShopSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
shopify_shop_id SortOrder No
subscription_id SortOrder No

EnumShopStatusWithAggregatesFilter

Name Type Nullable
equals ShopStatus No
in ShopStatus[] | ShopStatus No
notIn ShopStatus[] | ShopStatus No
not ShopStatus | NestedEnumShopStatusWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumShopStatusFilter No
_max NestedEnumShopStatusFilter No

EnumGenericStatusFilter

Name Type Nullable
equals GenericStatus No
in GenericStatus[] | GenericStatus No
notIn GenericStatus[] | GenericStatus No
not GenericStatus | NestedEnumGenericStatusFilter No

EnumElementTypeFilter

Name Type Nullable
equals ElementType No
in ElementType[] | ElementType No
notIn ElementType[] | ElementType No
not ElementType | NestedEnumElementTypeFilter No

DecimalFilter

Name Type Nullable
equals Decimal No
in Decimal[] | Decimal No
notIn Decimal[] | Decimal No
lt Decimal No
lte Decimal No
gt Decimal No
gte Decimal No
not Decimal | NestedDecimalFilter No

EnumDiscountTypeNullableFilter

Name Type Nullable
equals DiscountType | Null Yes
in DiscountType[] | DiscountType | Null Yes
notIn DiscountType[] | DiscountType | Null Yes
not DiscountType | NestedEnumDiscountTypeNullableFilter | Null Yes

DecimalNullableFilter

Name Type Nullable
equals Decimal | Null Yes
in Decimal[] | Decimal | Null Yes
notIn Decimal[] | Decimal | Null Yes
lt Decimal No
lte Decimal No
gt Decimal No
gte Decimal No
not Decimal | NestedDecimalNullableFilter | Null Yes

Element_ImageListRelationFilter

Name Type Nullable
every Element_ImageWhereInput No
some Element_ImageWhereInput No
none Element_ImageWhereInput No

Element_Best_UseListRelationFilter

Name Type Nullable
every Element_Best_UseWhereInput No
some Element_Best_UseWhereInput No
none Element_Best_UseWhereInput No

Element_TagListRelationFilter

Name Type Nullable
every Element_TagWhereInput No
some Element_TagWhereInput No
none Element_TagWhereInput No

Element_CategoryListRelationFilter

Name Type Nullable
every Element_CategoryWhereInput No
some Element_CategoryWhereInput No
none Element_CategoryWhereInput No

Element_ImageOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

Element_Best_UseOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

Element_TagOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

Element_CategoryOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

ElementCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
slug SortOrder No
description SortOrder No
featured_image SortOrder No
content SortOrder No
file_name SortOrder No
status SortOrder No
type SortOrder No
price SortOrder No
discount_type SortOrder No
discount_value SortOrder No
demo_url SortOrder No
video_url SortOrder No
version SortOrder No
user_id SortOrder No
wishlisted_count SortOrder No
bookmarked_count SortOrder No
added_theme_count SortOrder No
view_count SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

ElementAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
price SortOrder No
discount_value SortOrder No
user_id SortOrder No
wishlisted_count SortOrder No
bookmarked_count SortOrder No
added_theme_count SortOrder No
view_count SortOrder No
deleted_by SortOrder No

ElementMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
slug SortOrder No
description SortOrder No
featured_image SortOrder No
content SortOrder No
file_name SortOrder No
status SortOrder No
type SortOrder No
price SortOrder No
discount_type SortOrder No
discount_value SortOrder No
demo_url SortOrder No
video_url SortOrder No
version SortOrder No
user_id SortOrder No
wishlisted_count SortOrder No
bookmarked_count SortOrder No
added_theme_count SortOrder No
view_count SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

ElementMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
slug SortOrder No
description SortOrder No
featured_image SortOrder No
content SortOrder No
file_name SortOrder No
status SortOrder No
type SortOrder No
price SortOrder No
discount_type SortOrder No
discount_value SortOrder No
demo_url SortOrder No
video_url SortOrder No
version SortOrder No
user_id SortOrder No
wishlisted_count SortOrder No
bookmarked_count SortOrder No
added_theme_count SortOrder No
view_count SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

ElementSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
price SortOrder No
discount_value SortOrder No
user_id SortOrder No
wishlisted_count SortOrder No
bookmarked_count SortOrder No
added_theme_count SortOrder No
view_count SortOrder No
deleted_by SortOrder No

EnumGenericStatusWithAggregatesFilter

Name Type Nullable
equals GenericStatus No
in GenericStatus[] | GenericStatus No
notIn GenericStatus[] | GenericStatus No
not GenericStatus | NestedEnumGenericStatusWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumGenericStatusFilter No
_max NestedEnumGenericStatusFilter No

EnumElementTypeWithAggregatesFilter

Name Type Nullable
equals ElementType No
in ElementType[] | ElementType No
notIn ElementType[] | ElementType No
not ElementType | NestedEnumElementTypeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumElementTypeFilter No
_max NestedEnumElementTypeFilter No

DecimalWithAggregatesFilter

Name Type Nullable
equals Decimal No
in Decimal[] | Decimal No
notIn Decimal[] | Decimal No
lt Decimal No
lte Decimal No
gt Decimal No
gte Decimal No
not Decimal | NestedDecimalWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedDecimalFilter No
_sum NestedDecimalFilter No
_min NestedDecimalFilter No
_max NestedDecimalFilter No

EnumDiscountTypeNullableWithAggregatesFilter

Name Type Nullable
equals DiscountType | Null Yes
in DiscountType[] | DiscountType | Null Yes
notIn DiscountType[] | DiscountType | Null Yes
not DiscountType | NestedEnumDiscountTypeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumDiscountTypeNullableFilter No
_max NestedEnumDiscountTypeNullableFilter No

DecimalNullableWithAggregatesFilter

Name Type Nullable
equals Decimal | Null Yes
in Decimal[] | Decimal | Null Yes
notIn Decimal[] | Decimal | Null Yes
lt Decimal No
lte Decimal No
gt Decimal No
gte Decimal No
not Decimal | NestedDecimalNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedDecimalNullableFilter No
_sum NestedDecimalNullableFilter No
_min NestedDecimalNullableFilter No
_max NestedDecimalNullableFilter No

EnumBundleTypeFilter

Name Type Nullable
equals BundleType No
in BundleType[] | BundleType No
notIn BundleType[] | BundleType No
not BundleType | NestedEnumBundleTypeFilter No

Bundle_ImageListRelationFilter

Name Type Nullable
every Bundle_ImageWhereInput No
some Bundle_ImageWhereInput No
none Bundle_ImageWhereInput No

Bundle_CategoryListRelationFilter

Name Type Nullable
every Bundle_CategoryWhereInput No
some Bundle_CategoryWhereInput No
none Bundle_CategoryWhereInput No

Bundle_ImageOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

Bundle_CategoryOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

BundleCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
slug SortOrder No
description SortOrder No
featured_image SortOrder No
status SortOrder No
type SortOrder No
is_auto_price SortOrder No
price SortOrder No
discount_type SortOrder No
discount_value SortOrder No
demo_url SortOrder No
video_url SortOrder No
version SortOrder No
user_id SortOrder No
view_count SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

BundleAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
price SortOrder No
discount_value SortOrder No
user_id SortOrder No
view_count SortOrder No
deleted_by SortOrder No

BundleMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
slug SortOrder No
description SortOrder No
featured_image SortOrder No
status SortOrder No
type SortOrder No
is_auto_price SortOrder No
price SortOrder No
discount_type SortOrder No
discount_value SortOrder No
demo_url SortOrder No
video_url SortOrder No
version SortOrder No
user_id SortOrder No
view_count SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

BundleMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
slug SortOrder No
description SortOrder No
featured_image SortOrder No
status SortOrder No
type SortOrder No
is_auto_price SortOrder No
price SortOrder No
discount_type SortOrder No
discount_value SortOrder No
demo_url SortOrder No
video_url SortOrder No
version SortOrder No
user_id SortOrder No
view_count SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

BundleSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
price SortOrder No
discount_value SortOrder No
user_id SortOrder No
view_count SortOrder No
deleted_by SortOrder No

EnumBundleTypeWithAggregatesFilter

Name Type Nullable
equals BundleType No
in BundleType[] | BundleType No
notIn BundleType[] | BundleType No
not BundleType | NestedEnumBundleTypeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumBundleTypeFilter No
_max NestedEnumBundleTypeFilter No

BundleRelationFilter

Name Type Nullable
is BundleWhereInput | Null Yes
isNot BundleWhereInput | Null Yes

ElementRelationFilter

Name Type Nullable
is ElementWhereInput | Null Yes
isNot ElementWhereInput | Null Yes

Bundle_ElementCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
bundle_id SortOrder No
element_id SortOrder No
element_type SortOrder No
status SortOrder No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

Bundle_ElementAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
bundle_id SortOrder No
element_id SortOrder No
user_id SortOrder No
deleted_by SortOrder No

Bundle_ElementMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
bundle_id SortOrder No
element_id SortOrder No
element_type SortOrder No
status SortOrder No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

Bundle_ElementMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
bundle_id SortOrder No
element_id SortOrder No
element_type SortOrder No
status SortOrder No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

Bundle_ElementSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
bundle_id SortOrder No
element_id SortOrder No
user_id SortOrder No
deleted_by SortOrder No

Element_ImageCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
url SortOrder No
element_id SortOrder No
created_at SortOrder No

Element_ImageAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
element_id SortOrder No

Element_ImageMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
url SortOrder No
element_id SortOrder No
created_at SortOrder No

Element_ImageMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
url SortOrder No
element_id SortOrder No
created_at SortOrder No

Element_ImageSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
element_id SortOrder No

Bundle_ImageCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
url SortOrder No
bundle_id SortOrder No
created_at SortOrder No

Bundle_ImageAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
bundle_id SortOrder No

Bundle_ImageMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
url SortOrder No
bundle_id SortOrder No
created_at SortOrder No

Bundle_ImageMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
url SortOrder No
bundle_id SortOrder No
created_at SortOrder No

Bundle_ImageSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
bundle_id SortOrder No

Element_Best_UseCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
element_id SortOrder No
title SortOrder No
description SortOrder No
created_at SortOrder No
updated_at SortOrder No

Element_Best_UseAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
element_id SortOrder No

Element_Best_UseMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
element_id SortOrder No
title SortOrder No
description SortOrder No
created_at SortOrder No
updated_at SortOrder No

Element_Best_UseMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
element_id SortOrder No
title SortOrder No
description SortOrder No
created_at SortOrder No
updated_at SortOrder No

Element_Best_UseSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
element_id SortOrder No

EnumAssetTypeFilter

Name Type Nullable
equals AssetType No
in AssetType[] | AssetType No
notIn AssetType[] | AssetType No
not AssetType | NestedEnumAssetTypeFilter No

CategoryCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
slug SortOrder No
description SortOrder No
type SortOrder No
status SortOrder No
image SortOrder No
banner SortOrder No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

CategoryAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
deleted_by SortOrder No

CategoryMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
slug SortOrder No
description SortOrder No
type SortOrder No
status SortOrder No
image SortOrder No
banner SortOrder No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

CategoryMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
slug SortOrder No
description SortOrder No
type SortOrder No
status SortOrder No
image SortOrder No
banner SortOrder No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

CategorySumOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
deleted_by SortOrder No

EnumAssetTypeWithAggregatesFilter

Name Type Nullable
equals AssetType No
in AssetType[] | AssetType No
notIn AssetType[] | AssetType No
not AssetType | NestedEnumAssetTypeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumAssetTypeFilter No
_max NestedEnumAssetTypeFilter No

CategoryRelationFilter

Name Type Nullable
is CategoryWhereInput | Null Yes
isNot CategoryWhereInput | Null Yes

Element_CategoryCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
element_id SortOrder No
category_id SortOrder No
created_at SortOrder No

Element_CategoryAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
element_id SortOrder No
category_id SortOrder No

Element_CategoryMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
element_id SortOrder No
category_id SortOrder No
created_at SortOrder No

Element_CategoryMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
element_id SortOrder No
category_id SortOrder No
created_at SortOrder No

Element_CategorySumOrderByAggregateInput

Name Type Nullable
id SortOrder No
element_id SortOrder No
category_id SortOrder No

Bundle_CategoryCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
bundle_id SortOrder No
category_id SortOrder No
created_at SortOrder No

Bundle_CategoryAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
bundle_id SortOrder No
category_id SortOrder No

Bundle_CategoryMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
bundle_id SortOrder No
category_id SortOrder No
created_at SortOrder No

Bundle_CategoryMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
bundle_id SortOrder No
category_id SortOrder No
created_at SortOrder No

Bundle_CategorySumOrderByAggregateInput

Name Type Nullable
id SortOrder No
bundle_id SortOrder No
category_id SortOrder No

TagCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
slug SortOrder No
user_id SortOrder No
description SortOrder No
image SortOrder No
banner SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

TagAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
deleted_by SortOrder No

TagMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
slug SortOrder No
user_id SortOrder No
description SortOrder No
image SortOrder No
banner SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

TagMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
slug SortOrder No
user_id SortOrder No
description SortOrder No
image SortOrder No
banner SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

TagSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
deleted_by SortOrder No

TagRelationFilter

Name Type Nullable
is TagWhereInput | Null Yes
isNot TagWhereInput | Null Yes

Element_TagCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
element_id SortOrder No
tag_id SortOrder No
created_at SortOrder No

Element_TagAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
element_id SortOrder No
tag_id SortOrder No

Element_TagMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
element_id SortOrder No
tag_id SortOrder No
created_at SortOrder No

Element_TagMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
element_id SortOrder No
tag_id SortOrder No
created_at SortOrder No

Element_TagSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
element_id SortOrder No
tag_id SortOrder No

BoolFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolFilter No

SessionCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
shop SortOrder No
state SortOrder No
isOnline SortOrder No
scope SortOrder No
userId SortOrder No

SessionAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No

SessionMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
shop SortOrder No
state SortOrder No
isOnline SortOrder No
scope SortOrder No
userId SortOrder No

SessionMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
shop SortOrder No
state SortOrder No
isOnline SortOrder No
scope SortOrder No
userId SortOrder No

SessionSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
userId SortOrder No

BoolWithAggregatesFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No

EnumOrderStatusFilter

Name Type Nullable
equals OrderStatus No
in OrderStatus[] | OrderStatus No
notIn OrderStatus[] | OrderStatus No
not OrderStatus | NestedEnumOrderStatusFilter No

ShopRelationFilter

Name Type Nullable
is ShopWhereInput | Null Yes
isNot ShopWhereInput | Null Yes

CouponRelationFilter

Name Type Nullable
is CouponWhereInput | Null Yes
isNot CouponWhereInput | Null Yes

Order_ItemListRelationFilter

Name Type Nullable
every Order_ItemWhereInput No
some Order_ItemWhereInput No
none Order_ItemWhereInput No

Order_ItemOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

OrderCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
shop_id SortOrder No
asset_type SortOrder No
status SortOrder No
sub_total SortOrder No
discounted_amout SortOrder No
coupon_id SortOrder No
coupon_code SortOrder No
coupon_discount_type SortOrder No
coupon_discount_value SortOrder No
grand_total SortOrder No
affiliated_by SortOrder No
affiliated_commission SortOrder No
created_at SortOrder No
updated_at SortOrder No

OrderAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
shop_id SortOrder No
sub_total SortOrder No
discounted_amout SortOrder No
coupon_id SortOrder No
coupon_discount_value SortOrder No
grand_total SortOrder No
affiliated_by SortOrder No
affiliated_commission SortOrder No

OrderMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
shop_id SortOrder No
asset_type SortOrder No
status SortOrder No
sub_total SortOrder No
discounted_amout SortOrder No
coupon_id SortOrder No
coupon_code SortOrder No
coupon_discount_type SortOrder No
coupon_discount_value SortOrder No
grand_total SortOrder No
affiliated_by SortOrder No
affiliated_commission SortOrder No
created_at SortOrder No
updated_at SortOrder No

OrderMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
shop_id SortOrder No
asset_type SortOrder No
status SortOrder No
sub_total SortOrder No
discounted_amout SortOrder No
coupon_id SortOrder No
coupon_code SortOrder No
coupon_discount_type SortOrder No
coupon_discount_value SortOrder No
grand_total SortOrder No
affiliated_by SortOrder No
affiliated_commission SortOrder No
created_at SortOrder No
updated_at SortOrder No

OrderSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
shop_id SortOrder No
sub_total SortOrder No
discounted_amout SortOrder No
coupon_id SortOrder No
coupon_discount_value SortOrder No
grand_total SortOrder No
affiliated_by SortOrder No
affiliated_commission SortOrder No

EnumOrderStatusWithAggregatesFilter

Name Type Nullable
equals OrderStatus No
in OrderStatus[] | OrderStatus No
notIn OrderStatus[] | OrderStatus No
not OrderStatus | NestedEnumOrderStatusWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumOrderStatusFilter No
_max NestedEnumOrderStatusFilter No

OrderRelationFilter

Name Type Nullable
is OrderWhereInput | Null Yes
isNot OrderWhereInput | Null Yes

Order_ItemCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
order_id SortOrder No
asset_id SortOrder No
asset_type SortOrder No
price SortOrder No
discounted_price SortOrder No
discount_type SortOrder No
discount_value SortOrder No
order_bundle_id SortOrder No

Order_ItemAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
order_id SortOrder No
asset_id SortOrder No
price SortOrder No
discounted_price SortOrder No
discount_value SortOrder No
order_bundle_id SortOrder No

Order_ItemMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
order_id SortOrder No
asset_id SortOrder No
asset_type SortOrder No
price SortOrder No
discounted_price SortOrder No
discount_type SortOrder No
discount_value SortOrder No
order_bundle_id SortOrder No

Order_ItemMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
order_id SortOrder No
asset_id SortOrder No
asset_type SortOrder No
price SortOrder No
discounted_price SortOrder No
discount_type SortOrder No
discount_value SortOrder No
order_bundle_id SortOrder No

Order_ItemSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
order_id SortOrder No
asset_id SortOrder No
price SortOrder No
discounted_price SortOrder No
discount_value SortOrder No
order_bundle_id SortOrder No

EnumCouponStatusFilter

Name Type Nullable
equals CouponStatus No
in CouponStatus[] | CouponStatus No
notIn CouponStatus[] | CouponStatus No
not CouponStatus | NestedEnumCouponStatusFilter No

AffiliatorRelationFilter

Name Type Nullable
is AffiliatorWhereInput | Null Yes
isNot AffiliatorWhereInput | Null Yes

CouponCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
code SortOrder No
status SortOrder No
expired_at SortOrder No
max_total_applied SortOrder No
max_applied_by_shop SortOrder No
discount_type SortOrder No
discount_value SortOrder No
min_order_amount SortOrder No
max_discount_limit SortOrder No
is_apply_on_asset_discount SortOrder No
affiliated_by SortOrder No
commission_type SortOrder No
commission_value SortOrder No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

CouponAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
max_total_applied SortOrder No
max_applied_by_shop SortOrder No
discount_value SortOrder No
min_order_amount SortOrder No
max_discount_limit SortOrder No
affiliated_by SortOrder No
commission_value SortOrder No
user_id SortOrder No
deleted_by SortOrder No

CouponMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
code SortOrder No
status SortOrder No
expired_at SortOrder No
max_total_applied SortOrder No
max_applied_by_shop SortOrder No
discount_type SortOrder No
discount_value SortOrder No
min_order_amount SortOrder No
max_discount_limit SortOrder No
is_apply_on_asset_discount SortOrder No
affiliated_by SortOrder No
commission_type SortOrder No
commission_value SortOrder No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

CouponMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
code SortOrder No
status SortOrder No
expired_at SortOrder No
max_total_applied SortOrder No
max_applied_by_shop SortOrder No
discount_type SortOrder No
discount_value SortOrder No
min_order_amount SortOrder No
max_discount_limit SortOrder No
is_apply_on_asset_discount SortOrder No
affiliated_by SortOrder No
commission_type SortOrder No
commission_value SortOrder No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

CouponSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
max_total_applied SortOrder No
max_applied_by_shop SortOrder No
discount_value SortOrder No
min_order_amount SortOrder No
max_discount_limit SortOrder No
affiliated_by SortOrder No
commission_value SortOrder No
user_id SortOrder No
deleted_by SortOrder No

EnumCouponStatusWithAggregatesFilter

Name Type Nullable
equals CouponStatus No
in CouponStatus[] | CouponStatus No
notIn CouponStatus[] | CouponStatus No
not CouponStatus | NestedEnumCouponStatusWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumCouponStatusFilter No
_max NestedEnumCouponStatusFilter No

EnumAffiliatorTypeFilter

Name Type Nullable
equals AffiliatorType No
in AffiliatorType[] | AffiliatorType No
notIn AffiliatorType[] | AffiliatorType No
not AffiliatorType | NestedEnumAffiliatorTypeFilter No

EnumAffiliatorStatusFilter

Name Type Nullable
equals AffiliatorStatus No
in AffiliatorStatus[] | AffiliatorStatus No
notIn AffiliatorStatus[] | AffiliatorStatus No
not AffiliatorStatus | NestedEnumAffiliatorStatusFilter No

AffiliatorCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
user_id SortOrder No
invited_by SortOrder No
type SortOrder No
type_other SortOrder No
status SortOrder No
total_earned SortOrder No
total_paid SortOrder No
current_coupon_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

AffiliatorAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
invited_by SortOrder No
total_earned SortOrder No
total_paid SortOrder No
current_coupon_id SortOrder No
deleted_by SortOrder No

AffiliatorMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
user_id SortOrder No
invited_by SortOrder No
type SortOrder No
type_other SortOrder No
status SortOrder No
total_earned SortOrder No
total_paid SortOrder No
current_coupon_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

AffiliatorMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
user_id SortOrder No
invited_by SortOrder No
type SortOrder No
type_other SortOrder No
status SortOrder No
total_earned SortOrder No
total_paid SortOrder No
current_coupon_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

AffiliatorSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
invited_by SortOrder No
total_earned SortOrder No
total_paid SortOrder No
current_coupon_id SortOrder No
deleted_by SortOrder No



EnumDiscountTypeFilter

Name Type Nullable
equals DiscountType No
in DiscountType[] | DiscountType No
notIn DiscountType[] | DiscountType No
not DiscountType | NestedEnumDiscountTypeFilter No

EnumCommissionStatusFilter

Name Type Nullable
equals CommissionStatus No
in CommissionStatus[] | CommissionStatus No
notIn CommissionStatus[] | CommissionStatus No
not CommissionStatus | NestedEnumCommissionStatusFilter No

Affiliator_CommissionCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
affiliator_id SortOrder No
user_id SortOrder No
order_id SortOrder No
shop_id SortOrder No
coupon_id SortOrder No
coupon_code SortOrder No
order_amout SortOrder No
coupon_discount_type SortOrder No
coupon_discount_value SortOrder No
commission_type SortOrder No
commission_value SortOrder No
amount SortOrder No
status SortOrder No
created_at SortOrder No
updated_at SortOrder No

Affiliator_CommissionAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
affiliator_id SortOrder No
user_id SortOrder No
order_id SortOrder No
shop_id SortOrder No
coupon_id SortOrder No
order_amout SortOrder No
coupon_discount_value SortOrder No
commission_value SortOrder No
amount SortOrder No

Affiliator_CommissionMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
affiliator_id SortOrder No
user_id SortOrder No
order_id SortOrder No
shop_id SortOrder No
coupon_id SortOrder No
coupon_code SortOrder No
order_amout SortOrder No
coupon_discount_type SortOrder No
coupon_discount_value SortOrder No
commission_type SortOrder No
commission_value SortOrder No
amount SortOrder No
status SortOrder No
created_at SortOrder No
updated_at SortOrder No

Affiliator_CommissionMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
affiliator_id SortOrder No
user_id SortOrder No
order_id SortOrder No
shop_id SortOrder No
coupon_id SortOrder No
coupon_code SortOrder No
order_amout SortOrder No
coupon_discount_type SortOrder No
coupon_discount_value SortOrder No
commission_type SortOrder No
commission_value SortOrder No
amount SortOrder No
status SortOrder No
created_at SortOrder No
updated_at SortOrder No

Affiliator_CommissionSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
affiliator_id SortOrder No
user_id SortOrder No
order_id SortOrder No
shop_id SortOrder No
coupon_id SortOrder No
order_amout SortOrder No
coupon_discount_value SortOrder No
commission_value SortOrder No
amount SortOrder No

EnumDiscountTypeWithAggregatesFilter

Name Type Nullable
equals DiscountType No
in DiscountType[] | DiscountType No
notIn DiscountType[] | DiscountType No
not DiscountType | NestedEnumDiscountTypeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumDiscountTypeFilter No
_max NestedEnumDiscountTypeFilter No



EnumPaymentMethodFilter

Name Type Nullable
equals PaymentMethod No
in PaymentMethod[] | PaymentMethod No
notIn PaymentMethod[] | PaymentMethod No
not PaymentMethod | NestedEnumPaymentMethodFilter No

JsonFilter

Name Type Nullable
equals Json | JsonNullValueFilter No
path String No
string_contains String No
string_starts_with String No
string_ends_with String No
array_contains Json | Null Yes
array_starts_with Json | Null Yes
array_ends_with Json | Null Yes
lt Json No
lte Json No
gt Json No
gte Json No
not Json | JsonNullValueFilter No

User_Pament_MethodRelationFilter

Name Type Nullable
is User_Pament_MethodWhereInput | Null Yes
isNot User_Pament_MethodWhereInput | Null Yes

Affiliator_Withdraw_RequestCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
affiliator_id SortOrder No
status SortOrder No
amount SortOrder No
payment_method_id SortOrder No
payment_method SortOrder No
payment_method_details SortOrder No
assignee SortOrder No
note SortOrder No
reject_reason SortOrder No
created_at SortOrder No
updated_at SortOrder No

Affiliator_Withdraw_RequestAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
affiliator_id SortOrder No
amount SortOrder No
payment_method_id SortOrder No
assignee SortOrder No

Affiliator_Withdraw_RequestMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
affiliator_id SortOrder No
status SortOrder No
amount SortOrder No
payment_method_id SortOrder No
payment_method SortOrder No
assignee SortOrder No
note SortOrder No
reject_reason SortOrder No
created_at SortOrder No
updated_at SortOrder No

Affiliator_Withdraw_RequestMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
affiliator_id SortOrder No
status SortOrder No
amount SortOrder No
payment_method_id SortOrder No
payment_method SortOrder No
assignee SortOrder No
note SortOrder No
reject_reason SortOrder No
created_at SortOrder No
updated_at SortOrder No

Affiliator_Withdraw_RequestSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
affiliator_id SortOrder No
amount SortOrder No
payment_method_id SortOrder No
assignee SortOrder No


EnumPaymentMethodWithAggregatesFilter

Name Type Nullable
equals PaymentMethod No
in PaymentMethod[] | PaymentMethod No
notIn PaymentMethod[] | PaymentMethod No
not PaymentMethod | NestedEnumPaymentMethodWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumPaymentMethodFilter No
_max NestedEnumPaymentMethodFilter No

JsonWithAggregatesFilter

Name Type Nullable
equals Json | JsonNullValueFilter No
path String No
string_contains String No
string_starts_with String No
string_ends_with String No
array_contains Json | Null Yes
array_starts_with Json | Null Yes
array_ends_with Json | Null Yes
lt Json No
lte Json No
gt Json No
gte Json No
not Json | JsonNullValueFilter No
_count NestedIntFilter No
_min NestedJsonFilter No
_max NestedJsonFilter No

User_Pament_MethodCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
method SortOrder No
details SortOrder No
is_default SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No

User_Pament_MethodAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No

User_Pament_MethodMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
method SortOrder No
is_default SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No

User_Pament_MethodMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
method SortOrder No
is_default SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No

User_Pament_MethodSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No

EnumPricingPlanTypeFilter

Name Type Nullable
equals PricingPlanType No
in PricingPlanType[] | PricingPlanType No
notIn PricingPlanType[] | PricingPlanType No
not PricingPlanType | NestedEnumPricingPlanTypeFilter No

Shop_SubscriptionListRelationFilter

Name Type Nullable
every Shop_SubscriptionWhereInput No
some Shop_SubscriptionWhereInput No
none Shop_SubscriptionWhereInput No

Pricing_Plan_FeatureListRelationFilter

Name Type Nullable
every Pricing_Plan_FeatureWhereInput No
some Pricing_Plan_FeatureWhereInput No
none Pricing_Plan_FeatureWhereInput No

Shop_SubscriptionOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

Pricing_Plan_FeatureOrderByRelationAggregateInput

Name Type Nullable
_count SortOrder No

Pricing_PlanCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
tagline SortOrder No
description SortOrder No
type SortOrder No
is_recommended SortOrder No
is_popular SortOrder No
price SortOrder No
discounted_price SortOrder No
yearly_discounted_price SortOrder No
trial_period SortOrder No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

Pricing_PlanAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
price SortOrder No
discounted_price SortOrder No
yearly_discounted_price SortOrder No
trial_period SortOrder No
user_id SortOrder No
deleted_by SortOrder No

Pricing_PlanMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
tagline SortOrder No
description SortOrder No
type SortOrder No
is_recommended SortOrder No
is_popular SortOrder No
price SortOrder No
discounted_price SortOrder No
yearly_discounted_price SortOrder No
trial_period SortOrder No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

Pricing_PlanMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
tagline SortOrder No
description SortOrder No
type SortOrder No
is_recommended SortOrder No
is_popular SortOrder No
price SortOrder No
discounted_price SortOrder No
yearly_discounted_price SortOrder No
trial_period SortOrder No
user_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

Pricing_PlanSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
price SortOrder No
discounted_price SortOrder No
yearly_discounted_price SortOrder No
trial_period SortOrder No
user_id SortOrder No
deleted_by SortOrder No


Pricing_PlanRelationFilter

Name Type Nullable
is Pricing_PlanWhereInput | Null Yes
isNot Pricing_PlanWhereInput | Null Yes

Pricing_Plan_FeatureCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
plan_id SortOrder No
title SortOrder No
type SortOrder No
description SortOrder No

Pricing_Plan_FeatureAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
plan_id SortOrder No

Pricing_Plan_FeatureMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
plan_id SortOrder No
title SortOrder No
type SortOrder No
description SortOrder No

Pricing_Plan_FeatureMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
plan_id SortOrder No
title SortOrder No
type SortOrder No
description SortOrder No

Pricing_Plan_FeatureSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
plan_id SortOrder No


EnumSubscriptionEndedTypeNullableFilter

Name Type Nullable
equals SubscriptionEndedType | Null Yes
in SubscriptionEndedType[] | SubscriptionEndedType | Null Yes
notIn SubscriptionEndedType[] | SubscriptionEndedType | Null Yes
not SubscriptionEndedType | NestedEnumSubscriptionEndedTypeNullableFilter | Null Yes

Shop_SubscriptionCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
shop_id SortOrder No
plan_id SortOrder No
plan_type SortOrder No
status SortOrder No
created_at SortOrder No
ended_at SortOrder No
ended_type SortOrder No
updated_at SortOrder No
amount SortOrder No
payment_method SortOrder No

Shop_SubscriptionAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
shop_id SortOrder No
plan_id SortOrder No
amount SortOrder No

Shop_SubscriptionMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
shop_id SortOrder No
plan_id SortOrder No
plan_type SortOrder No
status SortOrder No
created_at SortOrder No
ended_at SortOrder No
ended_type SortOrder No
updated_at SortOrder No
amount SortOrder No
payment_method SortOrder No

Shop_SubscriptionMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
shop_id SortOrder No
plan_id SortOrder No
plan_type SortOrder No
status SortOrder No
created_at SortOrder No
ended_at SortOrder No
ended_type SortOrder No
updated_at SortOrder No
amount SortOrder No
payment_method SortOrder No

Shop_SubscriptionSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
shop_id SortOrder No
plan_id SortOrder No
amount SortOrder No



EnumFaqStatusFilter

Name Type Nullable
equals FaqStatus No
in FaqStatus[] | FaqStatus No
notIn FaqStatus[] | FaqStatus No
not FaqStatus | NestedEnumFaqStatusFilter No

Faq_CategoryRelationFilter

Name Type Nullable
is Faq_CategoryWhereInput | Null Yes
isNot Faq_CategoryWhereInput | Null Yes

FaqCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
question SortOrder No
answer SortOrder No
status SortOrder No
category_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

FaqAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
category_id SortOrder No
deleted_by SortOrder No

FaqMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
question SortOrder No
answer SortOrder No
status SortOrder No
category_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

FaqMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
question SortOrder No
answer SortOrder No
status SortOrder No
category_id SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

FaqSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
category_id SortOrder No
deleted_by SortOrder No

EnumFaqStatusWithAggregatesFilter

Name Type Nullable
equals FaqStatus No
in FaqStatus[] | FaqStatus No
notIn FaqStatus[] | FaqStatus No
not FaqStatus | NestedEnumFaqStatusWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumFaqStatusFilter No
_max NestedEnumFaqStatusFilter No

Faq_CategoryCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
user_id SortOrder No
description SortOrder No
banner SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

Faq_CategoryAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
deleted_by SortOrder No

Faq_CategoryMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
user_id SortOrder No
description SortOrder No
banner SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

Faq_CategoryMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
name SortOrder No
user_id SortOrder No
description SortOrder No
banner SortOrder No
created_at SortOrder No
updated_at SortOrder No
deleted_at SortOrder No
deleted_by SortOrder No

Faq_CategorySumOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
deleted_by SortOrder No

EnumAttachmentTypeFilter

Name Type Nullable
equals AttachmentType No
in AttachmentType[] | AttachmentType No
notIn AttachmentType[] | AttachmentType No
not AttachmentType | NestedEnumAttachmentTypeFilter No

EnumAttachmentRefTypeFilter

Name Type Nullable
equals AttachmentRefType No
in AttachmentRefType[] | AttachmentRefType No
notIn AttachmentRefType[] | AttachmentRefType No
not AttachmentRefType | NestedEnumAttachmentRefTypeFilter No

AttachmentCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
url SortOrder No
type SortOrder No
ref_id SortOrder No
ref_type SortOrder No
created_at SortOrder No

AttachmentAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
ref_id SortOrder No

AttachmentMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
url SortOrder No
type SortOrder No
ref_id SortOrder No
ref_type SortOrder No
created_at SortOrder No

AttachmentMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
url SortOrder No
type SortOrder No
ref_id SortOrder No
ref_type SortOrder No
created_at SortOrder No

AttachmentSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
ref_id SortOrder No



WishlistCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
shop_id SortOrder No
element_id SortOrder No
element_type SortOrder No
created_at SortOrder No

WishlistAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
shop_id SortOrder No
element_id SortOrder No

WishlistMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
shop_id SortOrder No
element_id SortOrder No
element_type SortOrder No
created_at SortOrder No

WishlistMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
shop_id SortOrder No
element_id SortOrder No
element_type SortOrder No
created_at SortOrder No

WishlistSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
shop_id SortOrder No
element_id SortOrder No

BookmarkCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
shop_id SortOrder No
element_id SortOrder No
element_type SortOrder No
created_at SortOrder No

BookmarkAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
shop_id SortOrder No
element_id SortOrder No

BookmarkMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
shop_id SortOrder No
element_id SortOrder No
element_type SortOrder No
created_at SortOrder No

BookmarkMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
shop_id SortOrder No
element_id SortOrder No
element_type SortOrder No
created_at SortOrder No

BookmarkSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
shop_id SortOrder No
element_id SortOrder No

Recent_Used_ElementCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
shop_id SortOrder No
element_id SortOrder No
element_type SortOrder No
created_at SortOrder No

Recent_Used_ElementAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
shop_id SortOrder No
element_id SortOrder No

Recent_Used_ElementMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
shop_id SortOrder No
element_id SortOrder No
element_type SortOrder No
created_at SortOrder No

Recent_Used_ElementMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
shop_id SortOrder No
element_id SortOrder No
element_type SortOrder No
created_at SortOrder No

Recent_Used_ElementSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
shop_id SortOrder No
element_id SortOrder No

EnumSupportRefTypeFilter

Name Type Nullable
equals SupportRefType No
in SupportRefType[] | SupportRefType No
notIn SupportRefType[] | SupportRefType No
not SupportRefType | NestedEnumSupportRefTypeFilter No

EnumSupportCriteriaFilter

Name Type Nullable
equals SupportCriteria No
in SupportCriteria[] | SupportCriteria No
notIn SupportCriteria[] | SupportCriteria No
not SupportCriteria | NestedEnumSupportCriteriaFilter No

EnumSupportStatusNullableFilter

Name Type Nullable
equals SupportStatus | Null Yes
in SupportStatus[] | SupportStatus | Null Yes
notIn SupportStatus[] | SupportStatus | Null Yes
not SupportStatus | NestedEnumSupportStatusNullableFilter | Null Yes

EnumSupportLabelNullableFilter

Name Type Nullable
equals SupportLabel | Null Yes
in SupportLabel[] | SupportLabel | Null Yes
notIn SupportLabel[] | SupportLabel | Null Yes
not SupportLabel | NestedEnumSupportLabelNullableFilter | Null Yes

Support_TicketCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
user_id SortOrder No
ref_id SortOrder No
ref_type SortOrder No
criteria SortOrder No
reason SortOrder No
description SortOrder No
status SortOrder No
label SortOrder No
assignee SortOrder No
assigned_at SortOrder No
created_at SortOrder No
updated_at SortOrder No

Support_TicketAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
ref_id SortOrder No
assignee SortOrder No

Support_TicketMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
user_id SortOrder No
ref_id SortOrder No
ref_type SortOrder No
criteria SortOrder No
reason SortOrder No
description SortOrder No
status SortOrder No
label SortOrder No
assignee SortOrder No
assigned_at SortOrder No
created_at SortOrder No
updated_at SortOrder No

Support_TicketMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
uuid SortOrder No
user_id SortOrder No
ref_id SortOrder No
ref_type SortOrder No
criteria SortOrder No
reason SortOrder No
description SortOrder No
status SortOrder No
label SortOrder No
assignee SortOrder No
assigned_at SortOrder No
created_at SortOrder No
updated_at SortOrder No

Support_TicketSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
ref_id SortOrder No
assignee SortOrder No



EnumSupportStatusNullableWithAggregatesFilter

Name Type Nullable
equals SupportStatus | Null Yes
in SupportStatus[] | SupportStatus | Null Yes
notIn SupportStatus[] | SupportStatus | Null Yes
not SupportStatus | NestedEnumSupportStatusNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumSupportStatusNullableFilter No
_max NestedEnumSupportStatusNullableFilter No

EnumSupportLabelNullableWithAggregatesFilter

Name Type Nullable
equals SupportLabel | Null Yes
in SupportLabel[] | SupportLabel | Null Yes
notIn SupportLabel[] | SupportLabel | Null Yes
not SupportLabel | NestedEnumSupportLabelNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumSupportLabelNullableFilter No
_max NestedEnumSupportLabelNullableFilter No

Support_TicketRelationFilter

Name Type Nullable
is Support_TicketWhereInput | Null Yes
isNot Support_TicketWhereInput | Null Yes

Ticket_MessageCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
ticket_id SortOrder No
user_id SortOrder No
message SortOrder No
created_at SortOrder No
updated_at SortOrder No

Ticket_MessageAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
ticket_id SortOrder No
user_id SortOrder No

Ticket_MessageMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
ticket_id SortOrder No
user_id SortOrder No
message SortOrder No
created_at SortOrder No
updated_at SortOrder No

Ticket_MessageMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
ticket_id SortOrder No
user_id SortOrder No
message SortOrder No
created_at SortOrder No
updated_at SortOrder No

Ticket_MessageSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
ticket_id SortOrder No
user_id SortOrder No

EnumContactStatusNullableFilter

Name Type Nullable
equals ContactStatus | Null Yes
in ContactStatus[] | ContactStatus | Null Yes
notIn ContactStatus[] | ContactStatus | Null Yes
not ContactStatus | NestedEnumContactStatusNullableFilter | Null Yes

Contact_RequestCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
message SortOrder No
name SortOrder No
email SortOrder No
phone SortOrder No
country_code SortOrder No
country SortOrder No
status SortOrder No
created_at SortOrder No
updated_at SortOrder No

Contact_RequestAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No

Contact_RequestMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
message SortOrder No
name SortOrder No
email SortOrder No
phone SortOrder No
country_code SortOrder No
country SortOrder No
status SortOrder No
created_at SortOrder No
updated_at SortOrder No

Contact_RequestMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
message SortOrder No
name SortOrder No
email SortOrder No
phone SortOrder No
country_code SortOrder No
country SortOrder No
status SortOrder No
created_at SortOrder No
updated_at SortOrder No

Contact_RequestSumOrderByAggregateInput

Name Type Nullable
id SortOrder No

EnumContactStatusNullableWithAggregatesFilter

Name Type Nullable
equals ContactStatus | Null Yes
in ContactStatus[] | ContactStatus | Null Yes
notIn ContactStatus[] | ContactStatus | Null Yes
not ContactStatus | NestedEnumContactStatusNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumContactStatusNullableFilter No
_max NestedEnumContactStatusNullableFilter No

EnumTeamMemberRoleFilter

Name Type Nullable
equals TeamMemberRole No
in TeamMemberRole[] | TeamMemberRole No
notIn TeamMemberRole[] | TeamMemberRole No
not TeamMemberRole | NestedEnumTeamMemberRoleFilter No

Team_MemberCountOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
role SortOrder No
designation SortOrder No
badge SortOrder No
invited_by SortOrder No
onboarded_at SortOrder No
created_at SortOrder No
updated_at SortOrder No

Team_MemberAvgOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
invited_by SortOrder No

Team_MemberMaxOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
role SortOrder No
designation SortOrder No
badge SortOrder No
invited_by SortOrder No
onboarded_at SortOrder No
created_at SortOrder No
updated_at SortOrder No

Team_MemberMinOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
role SortOrder No
designation SortOrder No
badge SortOrder No
invited_by SortOrder No
onboarded_at SortOrder No
created_at SortOrder No
updated_at SortOrder No

Team_MemberSumOrderByAggregateInput

Name Type Nullable
id SortOrder No
user_id SortOrder No
invited_by SortOrder No




































StringFieldUpdateOperationsInput

Name Type Nullable
set String No

NullableStringFieldUpdateOperationsInput

Name Type Nullable
set String | Null Yes

EnumUserRoleFieldUpdateOperationsInput

Name Type Nullable
set UserRole No

NullableEnumUserStatusFieldUpdateOperationsInput

Name Type Nullable
set UserStatus | Null Yes

NullableBoolFieldUpdateOperationsInput

Name Type Nullable
set Boolean | Null Yes

NullableDateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime | Null Yes

DateTimeFieldUpdateOperationsInput

Name Type Nullable
set DateTime No

NullableIntFieldUpdateOperationsInput

Name Type Nullable
set Int | Null Yes
increment Int No
decrement Int No
multiply Int No
divide Int No

ShopUpdateManyWithoutUserNestedInput

Name Type Nullable
create ShopCreateWithoutUserInput | ShopCreateWithoutUserInput[] | ShopUncheckedCreateWithoutUserInput | ShopUncheckedCreateWithoutUserInput[] No
connectOrCreate ShopCreateOrConnectWithoutUserInput | ShopCreateOrConnectWithoutUserInput[] No
upsert ShopUpsertWithWhereUniqueWithoutUserInput | ShopUpsertWithWhereUniqueWithoutUserInput[] No
createMany ShopCreateManyUserInputEnvelope No
set ShopWhereUniqueInput | ShopWhereUniqueInput[] No
disconnect ShopWhereUniqueInput | ShopWhereUniqueInput[] No
delete ShopWhereUniqueInput | ShopWhereUniqueInput[] No
connect ShopWhereUniqueInput | ShopWhereUniqueInput[] No
update ShopUpdateWithWhereUniqueWithoutUserInput | ShopUpdateWithWhereUniqueWithoutUserInput[] No
updateMany ShopUpdateManyWithWhereWithoutUserInput | ShopUpdateManyWithWhereWithoutUserInput[] No
deleteMany ShopScalarWhereInput | ShopScalarWhereInput[] No

BundleUpdateManyWithoutUserNestedInput

Name Type Nullable
create BundleCreateWithoutUserInput | BundleCreateWithoutUserInput[] | BundleUncheckedCreateWithoutUserInput | BundleUncheckedCreateWithoutUserInput[] No
connectOrCreate BundleCreateOrConnectWithoutUserInput | BundleCreateOrConnectWithoutUserInput[] No
upsert BundleUpsertWithWhereUniqueWithoutUserInput | BundleUpsertWithWhereUniqueWithoutUserInput[] No
createMany BundleCreateManyUserInputEnvelope No
set BundleWhereUniqueInput | BundleWhereUniqueInput[] No
disconnect BundleWhereUniqueInput | BundleWhereUniqueInput[] No
delete BundleWhereUniqueInput | BundleWhereUniqueInput[] No
connect BundleWhereUniqueInput | BundleWhereUniqueInput[] No
update BundleUpdateWithWhereUniqueWithoutUserInput | BundleUpdateWithWhereUniqueWithoutUserInput[] No
updateMany BundleUpdateManyWithWhereWithoutUserInput | BundleUpdateManyWithWhereWithoutUserInput[] No
deleteMany BundleScalarWhereInput | BundleScalarWhereInput[] No

Bundle_ElementUpdateManyWithoutUserNestedInput

Name Type Nullable
create Bundle_ElementCreateWithoutUserInput | Bundle_ElementCreateWithoutUserInput[] | Bundle_ElementUncheckedCreateWithoutUserInput | Bundle_ElementUncheckedCreateWithoutUserInput[] No
connectOrCreate Bundle_ElementCreateOrConnectWithoutUserInput | Bundle_ElementCreateOrConnectWithoutUserInput[] No
upsert Bundle_ElementUpsertWithWhereUniqueWithoutUserInput | Bundle_ElementUpsertWithWhereUniqueWithoutUserInput[] No
createMany Bundle_ElementCreateManyUserInputEnvelope No
set Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] No
disconnect Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] No
delete Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] No
connect Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] No
update Bundle_ElementUpdateWithWhereUniqueWithoutUserInput | Bundle_ElementUpdateWithWhereUniqueWithoutUserInput[] No
updateMany Bundle_ElementUpdateManyWithWhereWithoutUserInput | Bundle_ElementUpdateManyWithWhereWithoutUserInput[] No
deleteMany Bundle_ElementScalarWhereInput | Bundle_ElementScalarWhereInput[] No

ElementUpdateManyWithoutUserNestedInput

Name Type Nullable
create ElementCreateWithoutUserInput | ElementCreateWithoutUserInput[] | ElementUncheckedCreateWithoutUserInput | ElementUncheckedCreateWithoutUserInput[] No
connectOrCreate ElementCreateOrConnectWithoutUserInput | ElementCreateOrConnectWithoutUserInput[] No
upsert ElementUpsertWithWhereUniqueWithoutUserInput | ElementUpsertWithWhereUniqueWithoutUserInput[] No
createMany ElementCreateManyUserInputEnvelope No
set ElementWhereUniqueInput | ElementWhereUniqueInput[] No
disconnect ElementWhereUniqueInput | ElementWhereUniqueInput[] No
delete ElementWhereUniqueInput | ElementWhereUniqueInput[] No
connect ElementWhereUniqueInput | ElementWhereUniqueInput[] No
update ElementUpdateWithWhereUniqueWithoutUserInput | ElementUpdateWithWhereUniqueWithoutUserInput[] No
updateMany ElementUpdateManyWithWhereWithoutUserInput | ElementUpdateManyWithWhereWithoutUserInput[] No
deleteMany ElementScalarWhereInput | ElementScalarWhereInput[] No

Pricing_PlanUpdateManyWithoutUserNestedInput

Name Type Nullable
create Pricing_PlanCreateWithoutUserInput | Pricing_PlanCreateWithoutUserInput[] | Pricing_PlanUncheckedCreateWithoutUserInput | Pricing_PlanUncheckedCreateWithoutUserInput[] No
connectOrCreate Pricing_PlanCreateOrConnectWithoutUserInput | Pricing_PlanCreateOrConnectWithoutUserInput[] No
upsert Pricing_PlanUpsertWithWhereUniqueWithoutUserInput | Pricing_PlanUpsertWithWhereUniqueWithoutUserInput[] No
createMany Pricing_PlanCreateManyUserInputEnvelope No
set Pricing_PlanWhereUniqueInput | Pricing_PlanWhereUniqueInput[] No
disconnect Pricing_PlanWhereUniqueInput | Pricing_PlanWhereUniqueInput[] No
delete Pricing_PlanWhereUniqueInput | Pricing_PlanWhereUniqueInput[] No
connect Pricing_PlanWhereUniqueInput | Pricing_PlanWhereUniqueInput[] No
update Pricing_PlanUpdateWithWhereUniqueWithoutUserInput | Pricing_PlanUpdateWithWhereUniqueWithoutUserInput[] No
updateMany Pricing_PlanUpdateManyWithWhereWithoutUserInput | Pricing_PlanUpdateManyWithWhereWithoutUserInput[] No
deleteMany Pricing_PlanScalarWhereInput | Pricing_PlanScalarWhereInput[] No

FaqUpdateManyWithoutUserNestedInput

Name Type Nullable
create FaqCreateWithoutUserInput | FaqCreateWithoutUserInput[] | FaqUncheckedCreateWithoutUserInput | FaqUncheckedCreateWithoutUserInput[] No
connectOrCreate FaqCreateOrConnectWithoutUserInput | FaqCreateOrConnectWithoutUserInput[] No
upsert FaqUpsertWithWhereUniqueWithoutUserInput | FaqUpsertWithWhereUniqueWithoutUserInput[] No
createMany FaqCreateManyUserInputEnvelope No
set FaqWhereUniqueInput | FaqWhereUniqueInput[] No
disconnect FaqWhereUniqueInput | FaqWhereUniqueInput[] No
delete FaqWhereUniqueInput | FaqWhereUniqueInput[] No
connect FaqWhereUniqueInput | FaqWhereUniqueInput[] No
update FaqUpdateWithWhereUniqueWithoutUserInput | FaqUpdateWithWhereUniqueWithoutUserInput[] No
updateMany FaqUpdateManyWithWhereWithoutUserInput | FaqUpdateManyWithWhereWithoutUserInput[] No
deleteMany FaqScalarWhereInput | FaqScalarWhereInput[] No

Faq_CategoryUpdateManyWithoutUserNestedInput

Name Type Nullable
create Faq_CategoryCreateWithoutUserInput | Faq_CategoryCreateWithoutUserInput[] | Faq_CategoryUncheckedCreateWithoutUserInput | Faq_CategoryUncheckedCreateWithoutUserInput[] No
connectOrCreate Faq_CategoryCreateOrConnectWithoutUserInput | Faq_CategoryCreateOrConnectWithoutUserInput[] No
upsert Faq_CategoryUpsertWithWhereUniqueWithoutUserInput | Faq_CategoryUpsertWithWhereUniqueWithoutUserInput[] No
createMany Faq_CategoryCreateManyUserInputEnvelope No
set Faq_CategoryWhereUniqueInput | Faq_CategoryWhereUniqueInput[] No
disconnect Faq_CategoryWhereUniqueInput | Faq_CategoryWhereUniqueInput[] No
delete Faq_CategoryWhereUniqueInput | Faq_CategoryWhereUniqueInput[] No
connect Faq_CategoryWhereUniqueInput | Faq_CategoryWhereUniqueInput[] No
update Faq_CategoryUpdateWithWhereUniqueWithoutUserInput | Faq_CategoryUpdateWithWhereUniqueWithoutUserInput[] No
updateMany Faq_CategoryUpdateManyWithWhereWithoutUserInput | Faq_CategoryUpdateManyWithWhereWithoutUserInput[] No
deleteMany Faq_CategoryScalarWhereInput | Faq_CategoryScalarWhereInput[] No

CategoryUpdateManyWithoutUserNestedInput

Name Type Nullable
create CategoryCreateWithoutUserInput | CategoryCreateWithoutUserInput[] | CategoryUncheckedCreateWithoutUserInput | CategoryUncheckedCreateWithoutUserInput[] No
connectOrCreate CategoryCreateOrConnectWithoutUserInput | CategoryCreateOrConnectWithoutUserInput[] No
upsert CategoryUpsertWithWhereUniqueWithoutUserInput | CategoryUpsertWithWhereUniqueWithoutUserInput[] No
createMany CategoryCreateManyUserInputEnvelope No
set CategoryWhereUniqueInput | CategoryWhereUniqueInput[] No
disconnect CategoryWhereUniqueInput | CategoryWhereUniqueInput[] No
delete CategoryWhereUniqueInput | CategoryWhereUniqueInput[] No
connect CategoryWhereUniqueInput | CategoryWhereUniqueInput[] No
update CategoryUpdateWithWhereUniqueWithoutUserInput | CategoryUpdateWithWhereUniqueWithoutUserInput[] No
updateMany CategoryUpdateManyWithWhereWithoutUserInput | CategoryUpdateManyWithWhereWithoutUserInput[] No
deleteMany CategoryScalarWhereInput | CategoryScalarWhereInput[] No

TagUpdateManyWithoutUserNestedInput

Name Type Nullable
create TagCreateWithoutUserInput | TagCreateWithoutUserInput[] | TagUncheckedCreateWithoutUserInput | TagUncheckedCreateWithoutUserInput[] No
connectOrCreate TagCreateOrConnectWithoutUserInput | TagCreateOrConnectWithoutUserInput[] No
upsert TagUpsertWithWhereUniqueWithoutUserInput | TagUpsertWithWhereUniqueWithoutUserInput[] No
createMany TagCreateManyUserInputEnvelope No
set TagWhereUniqueInput | TagWhereUniqueInput[] No
disconnect TagWhereUniqueInput | TagWhereUniqueInput[] No
delete TagWhereUniqueInput | TagWhereUniqueInput[] No
connect TagWhereUniqueInput | TagWhereUniqueInput[] No
update TagUpdateWithWhereUniqueWithoutUserInput | TagUpdateWithWhereUniqueWithoutUserInput[] No
updateMany TagUpdateManyWithWhereWithoutUserInput | TagUpdateManyWithWhereWithoutUserInput[] No
deleteMany TagScalarWhereInput | TagScalarWhereInput[] No

Support_TicketUpdateManyWithoutUserNestedInput

Name Type Nullable
create Support_TicketCreateWithoutUserInput | Support_TicketCreateWithoutUserInput[] | Support_TicketUncheckedCreateWithoutUserInput | Support_TicketUncheckedCreateWithoutUserInput[] No
connectOrCreate Support_TicketCreateOrConnectWithoutUserInput | Support_TicketCreateOrConnectWithoutUserInput[] No
upsert Support_TicketUpsertWithWhereUniqueWithoutUserInput | Support_TicketUpsertWithWhereUniqueWithoutUserInput[] No
createMany Support_TicketCreateManyUserInputEnvelope No
set Support_TicketWhereUniqueInput | Support_TicketWhereUniqueInput[] No
disconnect Support_TicketWhereUniqueInput | Support_TicketWhereUniqueInput[] No
delete Support_TicketWhereUniqueInput | Support_TicketWhereUniqueInput[] No
connect Support_TicketWhereUniqueInput | Support_TicketWhereUniqueInput[] No
update Support_TicketUpdateWithWhereUniqueWithoutUserInput | Support_TicketUpdateWithWhereUniqueWithoutUserInput[] No
updateMany Support_TicketUpdateManyWithWhereWithoutUserInput | Support_TicketUpdateManyWithWhereWithoutUserInput[] No
deleteMany Support_TicketScalarWhereInput | Support_TicketScalarWhereInput[] No

Ticket_MessageUpdateManyWithoutUserNestedInput

Name Type Nullable
create Ticket_MessageCreateWithoutUserInput | Ticket_MessageCreateWithoutUserInput[] | Ticket_MessageUncheckedCreateWithoutUserInput | Ticket_MessageUncheckedCreateWithoutUserInput[] No
connectOrCreate Ticket_MessageCreateOrConnectWithoutUserInput | Ticket_MessageCreateOrConnectWithoutUserInput[] No
upsert Ticket_MessageUpsertWithWhereUniqueWithoutUserInput | Ticket_MessageUpsertWithWhereUniqueWithoutUserInput[] No
createMany Ticket_MessageCreateManyUserInputEnvelope No
set Ticket_MessageWhereUniqueInput | Ticket_MessageWhereUniqueInput[] No
disconnect Ticket_MessageWhereUniqueInput | Ticket_MessageWhereUniqueInput[] No
delete Ticket_MessageWhereUniqueInput | Ticket_MessageWhereUniqueInput[] No
connect Ticket_MessageWhereUniqueInput | Ticket_MessageWhereUniqueInput[] No
update Ticket_MessageUpdateWithWhereUniqueWithoutUserInput | Ticket_MessageUpdateWithWhereUniqueWithoutUserInput[] No
updateMany Ticket_MessageUpdateManyWithWhereWithoutUserInput | Ticket_MessageUpdateManyWithWhereWithoutUserInput[] No
deleteMany Ticket_MessageScalarWhereInput | Ticket_MessageScalarWhereInput[] No

AffiliatorUpdateManyWithoutUserNestedInput

Name Type Nullable
create AffiliatorCreateWithoutUserInput | AffiliatorCreateWithoutUserInput[] | AffiliatorUncheckedCreateWithoutUserInput | AffiliatorUncheckedCreateWithoutUserInput[] No
connectOrCreate AffiliatorCreateOrConnectWithoutUserInput | AffiliatorCreateOrConnectWithoutUserInput[] No
upsert AffiliatorUpsertWithWhereUniqueWithoutUserInput | AffiliatorUpsertWithWhereUniqueWithoutUserInput[] No
createMany AffiliatorCreateManyUserInputEnvelope No
set AffiliatorWhereUniqueInput | AffiliatorWhereUniqueInput[] No
disconnect AffiliatorWhereUniqueInput | AffiliatorWhereUniqueInput[] No
delete AffiliatorWhereUniqueInput | AffiliatorWhereUniqueInput[] No
connect AffiliatorWhereUniqueInput | AffiliatorWhereUniqueInput[] No
update AffiliatorUpdateWithWhereUniqueWithoutUserInput | AffiliatorUpdateWithWhereUniqueWithoutUserInput[] No
updateMany AffiliatorUpdateManyWithWhereWithoutUserInput | AffiliatorUpdateManyWithWhereWithoutUserInput[] No
deleteMany AffiliatorScalarWhereInput | AffiliatorScalarWhereInput[] No

Affiliator_CommissionUpdateManyWithoutUserNestedInput

Name Type Nullable
create Affiliator_CommissionCreateWithoutUserInput | Affiliator_CommissionCreateWithoutUserInput[] | Affiliator_CommissionUncheckedCreateWithoutUserInput | Affiliator_CommissionUncheckedCreateWithoutUserInput[] No
connectOrCreate Affiliator_CommissionCreateOrConnectWithoutUserInput | Affiliator_CommissionCreateOrConnectWithoutUserInput[] No
upsert Affiliator_CommissionUpsertWithWhereUniqueWithoutUserInput | Affiliator_CommissionUpsertWithWhereUniqueWithoutUserInput[] No
createMany Affiliator_CommissionCreateManyUserInputEnvelope No
set Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
disconnect Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
delete Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
connect Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
update Affiliator_CommissionUpdateWithWhereUniqueWithoutUserInput | Affiliator_CommissionUpdateWithWhereUniqueWithoutUserInput[] No
updateMany Affiliator_CommissionUpdateManyWithWhereWithoutUserInput | Affiliator_CommissionUpdateManyWithWhereWithoutUserInput[] No
deleteMany Affiliator_CommissionScalarWhereInput | Affiliator_CommissionScalarWhereInput[] No

Affiliator_Withdraw_RequestUpdateManyWithoutAssigned_userNestedInput

Name Type Nullable
create Affiliator_Withdraw_RequestCreateWithoutAssigned_userInput | Affiliator_Withdraw_RequestCreateWithoutAssigned_userInput[] | Affiliator_Withdraw_RequestUncheckedCreateWithoutAssigned_userInput | Affiliator_Withdraw_RequestUncheckedCreateWithoutAssigned_userInput[] No
connectOrCreate Affiliator_Withdraw_RequestCreateOrConnectWithoutAssigned_userInput | Affiliator_Withdraw_RequestCreateOrConnectWithoutAssigned_userInput[] No
upsert Affiliator_Withdraw_RequestUpsertWithWhereUniqueWithoutAssigned_userInput | Affiliator_Withdraw_RequestUpsertWithWhereUniqueWithoutAssigned_userInput[] No
createMany Affiliator_Withdraw_RequestCreateManyAssigned_userInputEnvelope No
set Affiliator_Withdraw_RequestWhereUniqueInput | Affiliator_Withdraw_RequestWhereUniqueInput[] No
disconnect Affiliator_Withdraw_RequestWhereUniqueInput | Affiliator_Withdraw_RequestWhereUniqueInput[] No
delete Affiliator_Withdraw_RequestWhereUniqueInput | Affiliator_Withdraw_RequestWhereUniqueInput[] No
connect Affiliator_Withdraw_RequestWhereUniqueInput | Affiliator_Withdraw_RequestWhereUniqueInput[] No
update Affiliator_Withdraw_RequestUpdateWithWhereUniqueWithoutAssigned_userInput | Affiliator_Withdraw_RequestUpdateWithWhereUniqueWithoutAssigned_userInput[] No
updateMany Affiliator_Withdraw_RequestUpdateManyWithWhereWithoutAssigned_userInput | Affiliator_Withdraw_RequestUpdateManyWithWhereWithoutAssigned_userInput[] No
deleteMany Affiliator_Withdraw_RequestScalarWhereInput | Affiliator_Withdraw_RequestScalarWhereInput[] No

CouponUpdateManyWithoutUserNestedInput

Name Type Nullable
create CouponCreateWithoutUserInput | CouponCreateWithoutUserInput[] | CouponUncheckedCreateWithoutUserInput | CouponUncheckedCreateWithoutUserInput[] No
connectOrCreate CouponCreateOrConnectWithoutUserInput | CouponCreateOrConnectWithoutUserInput[] No
upsert CouponUpsertWithWhereUniqueWithoutUserInput | CouponUpsertWithWhereUniqueWithoutUserInput[] No
createMany CouponCreateManyUserInputEnvelope No
set CouponWhereUniqueInput | CouponWhereUniqueInput[] No
disconnect CouponWhereUniqueInput | CouponWhereUniqueInput[] No
delete CouponWhereUniqueInput | CouponWhereUniqueInput[] No
connect CouponWhereUniqueInput | CouponWhereUniqueInput[] No
update CouponUpdateWithWhereUniqueWithoutUserInput | CouponUpdateWithWhereUniqueWithoutUserInput[] No
updateMany CouponUpdateManyWithWhereWithoutUserInput | CouponUpdateManyWithWhereWithoutUserInput[] No
deleteMany CouponScalarWhereInput | CouponScalarWhereInput[] No

User_Pament_MethodUpdateManyWithoutUserNestedInput

Name Type Nullable
create User_Pament_MethodCreateWithoutUserInput | User_Pament_MethodCreateWithoutUserInput[] | User_Pament_MethodUncheckedCreateWithoutUserInput | User_Pament_MethodUncheckedCreateWithoutUserInput[] No
connectOrCreate User_Pament_MethodCreateOrConnectWithoutUserInput | User_Pament_MethodCreateOrConnectWithoutUserInput[] No
upsert User_Pament_MethodUpsertWithWhereUniqueWithoutUserInput | User_Pament_MethodUpsertWithWhereUniqueWithoutUserInput[] No
createMany User_Pament_MethodCreateManyUserInputEnvelope No
set User_Pament_MethodWhereUniqueInput | User_Pament_MethodWhereUniqueInput[] No
disconnect User_Pament_MethodWhereUniqueInput | User_Pament_MethodWhereUniqueInput[] No
delete User_Pament_MethodWhereUniqueInput | User_Pament_MethodWhereUniqueInput[] No
connect User_Pament_MethodWhereUniqueInput | User_Pament_MethodWhereUniqueInput[] No
update User_Pament_MethodUpdateWithWhereUniqueWithoutUserInput | User_Pament_MethodUpdateWithWhereUniqueWithoutUserInput[] No
updateMany User_Pament_MethodUpdateManyWithWhereWithoutUserInput | User_Pament_MethodUpdateManyWithWhereWithoutUserInput[] No
deleteMany User_Pament_MethodScalarWhereInput | User_Pament_MethodScalarWhereInput[] No

Team_MemberUpdateManyWithoutUserNestedInput

Name Type Nullable
create Team_MemberCreateWithoutUserInput | Team_MemberCreateWithoutUserInput[] | Team_MemberUncheckedCreateWithoutUserInput | Team_MemberUncheckedCreateWithoutUserInput[] No
connectOrCreate Team_MemberCreateOrConnectWithoutUserInput | Team_MemberCreateOrConnectWithoutUserInput[] No
upsert Team_MemberUpsertWithWhereUniqueWithoutUserInput | Team_MemberUpsertWithWhereUniqueWithoutUserInput[] No
createMany Team_MemberCreateManyUserInputEnvelope No
set Team_MemberWhereUniqueInput | Team_MemberWhereUniqueInput[] No
disconnect Team_MemberWhereUniqueInput | Team_MemberWhereUniqueInput[] No
delete Team_MemberWhereUniqueInput | Team_MemberWhereUniqueInput[] No
connect Team_MemberWhereUniqueInput | Team_MemberWhereUniqueInput[] No
update Team_MemberUpdateWithWhereUniqueWithoutUserInput | Team_MemberUpdateWithWhereUniqueWithoutUserInput[] No
updateMany Team_MemberUpdateManyWithWhereWithoutUserInput | Team_MemberUpdateManyWithWhereWithoutUserInput[] No
deleteMany Team_MemberScalarWhereInput | Team_MemberScalarWhereInput[] No

IntFieldUpdateOperationsInput

Name Type Nullable
set Int No
increment Int No
decrement Int No
multiply Int No
divide Int No

ShopUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create ShopCreateWithoutUserInput | ShopCreateWithoutUserInput[] | ShopUncheckedCreateWithoutUserInput | ShopUncheckedCreateWithoutUserInput[] No
connectOrCreate ShopCreateOrConnectWithoutUserInput | ShopCreateOrConnectWithoutUserInput[] No
upsert ShopUpsertWithWhereUniqueWithoutUserInput | ShopUpsertWithWhereUniqueWithoutUserInput[] No
createMany ShopCreateManyUserInputEnvelope No
set ShopWhereUniqueInput | ShopWhereUniqueInput[] No
disconnect ShopWhereUniqueInput | ShopWhereUniqueInput[] No
delete ShopWhereUniqueInput | ShopWhereUniqueInput[] No
connect ShopWhereUniqueInput | ShopWhereUniqueInput[] No
update ShopUpdateWithWhereUniqueWithoutUserInput | ShopUpdateWithWhereUniqueWithoutUserInput[] No
updateMany ShopUpdateManyWithWhereWithoutUserInput | ShopUpdateManyWithWhereWithoutUserInput[] No
deleteMany ShopScalarWhereInput | ShopScalarWhereInput[] No

BundleUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create BundleCreateWithoutUserInput | BundleCreateWithoutUserInput[] | BundleUncheckedCreateWithoutUserInput | BundleUncheckedCreateWithoutUserInput[] No
connectOrCreate BundleCreateOrConnectWithoutUserInput | BundleCreateOrConnectWithoutUserInput[] No
upsert BundleUpsertWithWhereUniqueWithoutUserInput | BundleUpsertWithWhereUniqueWithoutUserInput[] No
createMany BundleCreateManyUserInputEnvelope No
set BundleWhereUniqueInput | BundleWhereUniqueInput[] No
disconnect BundleWhereUniqueInput | BundleWhereUniqueInput[] No
delete BundleWhereUniqueInput | BundleWhereUniqueInput[] No
connect BundleWhereUniqueInput | BundleWhereUniqueInput[] No
update BundleUpdateWithWhereUniqueWithoutUserInput | BundleUpdateWithWhereUniqueWithoutUserInput[] No
updateMany BundleUpdateManyWithWhereWithoutUserInput | BundleUpdateManyWithWhereWithoutUserInput[] No
deleteMany BundleScalarWhereInput | BundleScalarWhereInput[] No

Bundle_ElementUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create Bundle_ElementCreateWithoutUserInput | Bundle_ElementCreateWithoutUserInput[] | Bundle_ElementUncheckedCreateWithoutUserInput | Bundle_ElementUncheckedCreateWithoutUserInput[] No
connectOrCreate Bundle_ElementCreateOrConnectWithoutUserInput | Bundle_ElementCreateOrConnectWithoutUserInput[] No
upsert Bundle_ElementUpsertWithWhereUniqueWithoutUserInput | Bundle_ElementUpsertWithWhereUniqueWithoutUserInput[] No
createMany Bundle_ElementCreateManyUserInputEnvelope No
set Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] No
disconnect Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] No
delete Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] No
connect Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] No
update Bundle_ElementUpdateWithWhereUniqueWithoutUserInput | Bundle_ElementUpdateWithWhereUniqueWithoutUserInput[] No
updateMany Bundle_ElementUpdateManyWithWhereWithoutUserInput | Bundle_ElementUpdateManyWithWhereWithoutUserInput[] No
deleteMany Bundle_ElementScalarWhereInput | Bundle_ElementScalarWhereInput[] No

ElementUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create ElementCreateWithoutUserInput | ElementCreateWithoutUserInput[] | ElementUncheckedCreateWithoutUserInput | ElementUncheckedCreateWithoutUserInput[] No
connectOrCreate ElementCreateOrConnectWithoutUserInput | ElementCreateOrConnectWithoutUserInput[] No
upsert ElementUpsertWithWhereUniqueWithoutUserInput | ElementUpsertWithWhereUniqueWithoutUserInput[] No
createMany ElementCreateManyUserInputEnvelope No
set ElementWhereUniqueInput | ElementWhereUniqueInput[] No
disconnect ElementWhereUniqueInput | ElementWhereUniqueInput[] No
delete ElementWhereUniqueInput | ElementWhereUniqueInput[] No
connect ElementWhereUniqueInput | ElementWhereUniqueInput[] No
update ElementUpdateWithWhereUniqueWithoutUserInput | ElementUpdateWithWhereUniqueWithoutUserInput[] No
updateMany ElementUpdateManyWithWhereWithoutUserInput | ElementUpdateManyWithWhereWithoutUserInput[] No
deleteMany ElementScalarWhereInput | ElementScalarWhereInput[] No

Pricing_PlanUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create Pricing_PlanCreateWithoutUserInput | Pricing_PlanCreateWithoutUserInput[] | Pricing_PlanUncheckedCreateWithoutUserInput | Pricing_PlanUncheckedCreateWithoutUserInput[] No
connectOrCreate Pricing_PlanCreateOrConnectWithoutUserInput | Pricing_PlanCreateOrConnectWithoutUserInput[] No
upsert Pricing_PlanUpsertWithWhereUniqueWithoutUserInput | Pricing_PlanUpsertWithWhereUniqueWithoutUserInput[] No
createMany Pricing_PlanCreateManyUserInputEnvelope No
set Pricing_PlanWhereUniqueInput | Pricing_PlanWhereUniqueInput[] No
disconnect Pricing_PlanWhereUniqueInput | Pricing_PlanWhereUniqueInput[] No
delete Pricing_PlanWhereUniqueInput | Pricing_PlanWhereUniqueInput[] No
connect Pricing_PlanWhereUniqueInput | Pricing_PlanWhereUniqueInput[] No
update Pricing_PlanUpdateWithWhereUniqueWithoutUserInput | Pricing_PlanUpdateWithWhereUniqueWithoutUserInput[] No
updateMany Pricing_PlanUpdateManyWithWhereWithoutUserInput | Pricing_PlanUpdateManyWithWhereWithoutUserInput[] No
deleteMany Pricing_PlanScalarWhereInput | Pricing_PlanScalarWhereInput[] No

FaqUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create FaqCreateWithoutUserInput | FaqCreateWithoutUserInput[] | FaqUncheckedCreateWithoutUserInput | FaqUncheckedCreateWithoutUserInput[] No
connectOrCreate FaqCreateOrConnectWithoutUserInput | FaqCreateOrConnectWithoutUserInput[] No
upsert FaqUpsertWithWhereUniqueWithoutUserInput | FaqUpsertWithWhereUniqueWithoutUserInput[] No
createMany FaqCreateManyUserInputEnvelope No
set FaqWhereUniqueInput | FaqWhereUniqueInput[] No
disconnect FaqWhereUniqueInput | FaqWhereUniqueInput[] No
delete FaqWhereUniqueInput | FaqWhereUniqueInput[] No
connect FaqWhereUniqueInput | FaqWhereUniqueInput[] No
update FaqUpdateWithWhereUniqueWithoutUserInput | FaqUpdateWithWhereUniqueWithoutUserInput[] No
updateMany FaqUpdateManyWithWhereWithoutUserInput | FaqUpdateManyWithWhereWithoutUserInput[] No
deleteMany FaqScalarWhereInput | FaqScalarWhereInput[] No

Faq_CategoryUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create Faq_CategoryCreateWithoutUserInput | Faq_CategoryCreateWithoutUserInput[] | Faq_CategoryUncheckedCreateWithoutUserInput | Faq_CategoryUncheckedCreateWithoutUserInput[] No
connectOrCreate Faq_CategoryCreateOrConnectWithoutUserInput | Faq_CategoryCreateOrConnectWithoutUserInput[] No
upsert Faq_CategoryUpsertWithWhereUniqueWithoutUserInput | Faq_CategoryUpsertWithWhereUniqueWithoutUserInput[] No
createMany Faq_CategoryCreateManyUserInputEnvelope No
set Faq_CategoryWhereUniqueInput | Faq_CategoryWhereUniqueInput[] No
disconnect Faq_CategoryWhereUniqueInput | Faq_CategoryWhereUniqueInput[] No
delete Faq_CategoryWhereUniqueInput | Faq_CategoryWhereUniqueInput[] No
connect Faq_CategoryWhereUniqueInput | Faq_CategoryWhereUniqueInput[] No
update Faq_CategoryUpdateWithWhereUniqueWithoutUserInput | Faq_CategoryUpdateWithWhereUniqueWithoutUserInput[] No
updateMany Faq_CategoryUpdateManyWithWhereWithoutUserInput | Faq_CategoryUpdateManyWithWhereWithoutUserInput[] No
deleteMany Faq_CategoryScalarWhereInput | Faq_CategoryScalarWhereInput[] No

CategoryUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create CategoryCreateWithoutUserInput | CategoryCreateWithoutUserInput[] | CategoryUncheckedCreateWithoutUserInput | CategoryUncheckedCreateWithoutUserInput[] No
connectOrCreate CategoryCreateOrConnectWithoutUserInput | CategoryCreateOrConnectWithoutUserInput[] No
upsert CategoryUpsertWithWhereUniqueWithoutUserInput | CategoryUpsertWithWhereUniqueWithoutUserInput[] No
createMany CategoryCreateManyUserInputEnvelope No
set CategoryWhereUniqueInput | CategoryWhereUniqueInput[] No
disconnect CategoryWhereUniqueInput | CategoryWhereUniqueInput[] No
delete CategoryWhereUniqueInput | CategoryWhereUniqueInput[] No
connect CategoryWhereUniqueInput | CategoryWhereUniqueInput[] No
update CategoryUpdateWithWhereUniqueWithoutUserInput | CategoryUpdateWithWhereUniqueWithoutUserInput[] No
updateMany CategoryUpdateManyWithWhereWithoutUserInput | CategoryUpdateManyWithWhereWithoutUserInput[] No
deleteMany CategoryScalarWhereInput | CategoryScalarWhereInput[] No

TagUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create TagCreateWithoutUserInput | TagCreateWithoutUserInput[] | TagUncheckedCreateWithoutUserInput | TagUncheckedCreateWithoutUserInput[] No
connectOrCreate TagCreateOrConnectWithoutUserInput | TagCreateOrConnectWithoutUserInput[] No
upsert TagUpsertWithWhereUniqueWithoutUserInput | TagUpsertWithWhereUniqueWithoutUserInput[] No
createMany TagCreateManyUserInputEnvelope No
set TagWhereUniqueInput | TagWhereUniqueInput[] No
disconnect TagWhereUniqueInput | TagWhereUniqueInput[] No
delete TagWhereUniqueInput | TagWhereUniqueInput[] No
connect TagWhereUniqueInput | TagWhereUniqueInput[] No
update TagUpdateWithWhereUniqueWithoutUserInput | TagUpdateWithWhereUniqueWithoutUserInput[] No
updateMany TagUpdateManyWithWhereWithoutUserInput | TagUpdateManyWithWhereWithoutUserInput[] No
deleteMany TagScalarWhereInput | TagScalarWhereInput[] No

Support_TicketUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create Support_TicketCreateWithoutUserInput | Support_TicketCreateWithoutUserInput[] | Support_TicketUncheckedCreateWithoutUserInput | Support_TicketUncheckedCreateWithoutUserInput[] No
connectOrCreate Support_TicketCreateOrConnectWithoutUserInput | Support_TicketCreateOrConnectWithoutUserInput[] No
upsert Support_TicketUpsertWithWhereUniqueWithoutUserInput | Support_TicketUpsertWithWhereUniqueWithoutUserInput[] No
createMany Support_TicketCreateManyUserInputEnvelope No
set Support_TicketWhereUniqueInput | Support_TicketWhereUniqueInput[] No
disconnect Support_TicketWhereUniqueInput | Support_TicketWhereUniqueInput[] No
delete Support_TicketWhereUniqueInput | Support_TicketWhereUniqueInput[] No
connect Support_TicketWhereUniqueInput | Support_TicketWhereUniqueInput[] No
update Support_TicketUpdateWithWhereUniqueWithoutUserInput | Support_TicketUpdateWithWhereUniqueWithoutUserInput[] No
updateMany Support_TicketUpdateManyWithWhereWithoutUserInput | Support_TicketUpdateManyWithWhereWithoutUserInput[] No
deleteMany Support_TicketScalarWhereInput | Support_TicketScalarWhereInput[] No

Ticket_MessageUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create Ticket_MessageCreateWithoutUserInput | Ticket_MessageCreateWithoutUserInput[] | Ticket_MessageUncheckedCreateWithoutUserInput | Ticket_MessageUncheckedCreateWithoutUserInput[] No
connectOrCreate Ticket_MessageCreateOrConnectWithoutUserInput | Ticket_MessageCreateOrConnectWithoutUserInput[] No
upsert Ticket_MessageUpsertWithWhereUniqueWithoutUserInput | Ticket_MessageUpsertWithWhereUniqueWithoutUserInput[] No
createMany Ticket_MessageCreateManyUserInputEnvelope No
set Ticket_MessageWhereUniqueInput | Ticket_MessageWhereUniqueInput[] No
disconnect Ticket_MessageWhereUniqueInput | Ticket_MessageWhereUniqueInput[] No
delete Ticket_MessageWhereUniqueInput | Ticket_MessageWhereUniqueInput[] No
connect Ticket_MessageWhereUniqueInput | Ticket_MessageWhereUniqueInput[] No
update Ticket_MessageUpdateWithWhereUniqueWithoutUserInput | Ticket_MessageUpdateWithWhereUniqueWithoutUserInput[] No
updateMany Ticket_MessageUpdateManyWithWhereWithoutUserInput | Ticket_MessageUpdateManyWithWhereWithoutUserInput[] No
deleteMany Ticket_MessageScalarWhereInput | Ticket_MessageScalarWhereInput[] No

AffiliatorUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create AffiliatorCreateWithoutUserInput | AffiliatorCreateWithoutUserInput[] | AffiliatorUncheckedCreateWithoutUserInput | AffiliatorUncheckedCreateWithoutUserInput[] No
connectOrCreate AffiliatorCreateOrConnectWithoutUserInput | AffiliatorCreateOrConnectWithoutUserInput[] No
upsert AffiliatorUpsertWithWhereUniqueWithoutUserInput | AffiliatorUpsertWithWhereUniqueWithoutUserInput[] No
createMany AffiliatorCreateManyUserInputEnvelope No
set AffiliatorWhereUniqueInput | AffiliatorWhereUniqueInput[] No
disconnect AffiliatorWhereUniqueInput | AffiliatorWhereUniqueInput[] No
delete AffiliatorWhereUniqueInput | AffiliatorWhereUniqueInput[] No
connect AffiliatorWhereUniqueInput | AffiliatorWhereUniqueInput[] No
update AffiliatorUpdateWithWhereUniqueWithoutUserInput | AffiliatorUpdateWithWhereUniqueWithoutUserInput[] No
updateMany AffiliatorUpdateManyWithWhereWithoutUserInput | AffiliatorUpdateManyWithWhereWithoutUserInput[] No
deleteMany AffiliatorScalarWhereInput | AffiliatorScalarWhereInput[] No

Affiliator_CommissionUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create Affiliator_CommissionCreateWithoutUserInput | Affiliator_CommissionCreateWithoutUserInput[] | Affiliator_CommissionUncheckedCreateWithoutUserInput | Affiliator_CommissionUncheckedCreateWithoutUserInput[] No
connectOrCreate Affiliator_CommissionCreateOrConnectWithoutUserInput | Affiliator_CommissionCreateOrConnectWithoutUserInput[] No
upsert Affiliator_CommissionUpsertWithWhereUniqueWithoutUserInput | Affiliator_CommissionUpsertWithWhereUniqueWithoutUserInput[] No
createMany Affiliator_CommissionCreateManyUserInputEnvelope No
set Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
disconnect Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
delete Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
connect Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
update Affiliator_CommissionUpdateWithWhereUniqueWithoutUserInput | Affiliator_CommissionUpdateWithWhereUniqueWithoutUserInput[] No
updateMany Affiliator_CommissionUpdateManyWithWhereWithoutUserInput | Affiliator_CommissionUpdateManyWithWhereWithoutUserInput[] No
deleteMany Affiliator_CommissionScalarWhereInput | Affiliator_CommissionScalarWhereInput[] No

Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutAssigned_userNestedInput

Name Type Nullable
create Affiliator_Withdraw_RequestCreateWithoutAssigned_userInput | Affiliator_Withdraw_RequestCreateWithoutAssigned_userInput[] | Affiliator_Withdraw_RequestUncheckedCreateWithoutAssigned_userInput | Affiliator_Withdraw_RequestUncheckedCreateWithoutAssigned_userInput[] No
connectOrCreate Affiliator_Withdraw_RequestCreateOrConnectWithoutAssigned_userInput | Affiliator_Withdraw_RequestCreateOrConnectWithoutAssigned_userInput[] No
upsert Affiliator_Withdraw_RequestUpsertWithWhereUniqueWithoutAssigned_userInput | Affiliator_Withdraw_RequestUpsertWithWhereUniqueWithoutAssigned_userInput[] No
createMany Affiliator_Withdraw_RequestCreateManyAssigned_userInputEnvelope No
set Affiliator_Withdraw_RequestWhereUniqueInput | Affiliator_Withdraw_RequestWhereUniqueInput[] No
disconnect Affiliator_Withdraw_RequestWhereUniqueInput | Affiliator_Withdraw_RequestWhereUniqueInput[] No
delete Affiliator_Withdraw_RequestWhereUniqueInput | Affiliator_Withdraw_RequestWhereUniqueInput[] No
connect Affiliator_Withdraw_RequestWhereUniqueInput | Affiliator_Withdraw_RequestWhereUniqueInput[] No
update Affiliator_Withdraw_RequestUpdateWithWhereUniqueWithoutAssigned_userInput | Affiliator_Withdraw_RequestUpdateWithWhereUniqueWithoutAssigned_userInput[] No
updateMany Affiliator_Withdraw_RequestUpdateManyWithWhereWithoutAssigned_userInput | Affiliator_Withdraw_RequestUpdateManyWithWhereWithoutAssigned_userInput[] No
deleteMany Affiliator_Withdraw_RequestScalarWhereInput | Affiliator_Withdraw_RequestScalarWhereInput[] No

CouponUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create CouponCreateWithoutUserInput | CouponCreateWithoutUserInput[] | CouponUncheckedCreateWithoutUserInput | CouponUncheckedCreateWithoutUserInput[] No
connectOrCreate CouponCreateOrConnectWithoutUserInput | CouponCreateOrConnectWithoutUserInput[] No
upsert CouponUpsertWithWhereUniqueWithoutUserInput | CouponUpsertWithWhereUniqueWithoutUserInput[] No
createMany CouponCreateManyUserInputEnvelope No
set CouponWhereUniqueInput | CouponWhereUniqueInput[] No
disconnect CouponWhereUniqueInput | CouponWhereUniqueInput[] No
delete CouponWhereUniqueInput | CouponWhereUniqueInput[] No
connect CouponWhereUniqueInput | CouponWhereUniqueInput[] No
update CouponUpdateWithWhereUniqueWithoutUserInput | CouponUpdateWithWhereUniqueWithoutUserInput[] No
updateMany CouponUpdateManyWithWhereWithoutUserInput | CouponUpdateManyWithWhereWithoutUserInput[] No
deleteMany CouponScalarWhereInput | CouponScalarWhereInput[] No

User_Pament_MethodUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create User_Pament_MethodCreateWithoutUserInput | User_Pament_MethodCreateWithoutUserInput[] | User_Pament_MethodUncheckedCreateWithoutUserInput | User_Pament_MethodUncheckedCreateWithoutUserInput[] No
connectOrCreate User_Pament_MethodCreateOrConnectWithoutUserInput | User_Pament_MethodCreateOrConnectWithoutUserInput[] No
upsert User_Pament_MethodUpsertWithWhereUniqueWithoutUserInput | User_Pament_MethodUpsertWithWhereUniqueWithoutUserInput[] No
createMany User_Pament_MethodCreateManyUserInputEnvelope No
set User_Pament_MethodWhereUniqueInput | User_Pament_MethodWhereUniqueInput[] No
disconnect User_Pament_MethodWhereUniqueInput | User_Pament_MethodWhereUniqueInput[] No
delete User_Pament_MethodWhereUniqueInput | User_Pament_MethodWhereUniqueInput[] No
connect User_Pament_MethodWhereUniqueInput | User_Pament_MethodWhereUniqueInput[] No
update User_Pament_MethodUpdateWithWhereUniqueWithoutUserInput | User_Pament_MethodUpdateWithWhereUniqueWithoutUserInput[] No
updateMany User_Pament_MethodUpdateManyWithWhereWithoutUserInput | User_Pament_MethodUpdateManyWithWhereWithoutUserInput[] No
deleteMany User_Pament_MethodScalarWhereInput | User_Pament_MethodScalarWhereInput[] No

Team_MemberUncheckedUpdateManyWithoutUserNestedInput

Name Type Nullable
create Team_MemberCreateWithoutUserInput | Team_MemberCreateWithoutUserInput[] | Team_MemberUncheckedCreateWithoutUserInput | Team_MemberUncheckedCreateWithoutUserInput[] No
connectOrCreate Team_MemberCreateOrConnectWithoutUserInput | Team_MemberCreateOrConnectWithoutUserInput[] No
upsert Team_MemberUpsertWithWhereUniqueWithoutUserInput | Team_MemberUpsertWithWhereUniqueWithoutUserInput[] No
createMany Team_MemberCreateManyUserInputEnvelope No
set Team_MemberWhereUniqueInput | Team_MemberWhereUniqueInput[] No
disconnect Team_MemberWhereUniqueInput | Team_MemberWhereUniqueInput[] No
delete Team_MemberWhereUniqueInput | Team_MemberWhereUniqueInput[] No
connect Team_MemberWhereUniqueInput | Team_MemberWhereUniqueInput[] No
update Team_MemberUpdateWithWhereUniqueWithoutUserInput | Team_MemberUpdateWithWhereUniqueWithoutUserInput[] No
updateMany Team_MemberUpdateManyWithWhereWithoutUserInput | Team_MemberUpdateManyWithWhereWithoutUserInput[] No
deleteMany Team_MemberScalarWhereInput | Team_MemberScalarWhereInput[] No

UserCreateNestedOneWithoutShopsInput

Name Type Nullable
create UserCreateWithoutShopsInput | UserUncheckedCreateWithoutShopsInput No
connectOrCreate UserCreateOrConnectWithoutShopsInput No
connect UserWhereUniqueInput No

Shop_SubscriptionCreateNestedOneWithoutShopsInput

Name Type Nullable
create Shop_SubscriptionCreateWithoutShopsInput | Shop_SubscriptionUncheckedCreateWithoutShopsInput No
connectOrCreate Shop_SubscriptionCreateOrConnectWithoutShopsInput No
connect Shop_SubscriptionWhereUniqueInput No











EnumShopStatusFieldUpdateOperationsInput

Name Type Nullable
set ShopStatus No

UserUpdateOneWithoutShopsNestedInput

Name Type Nullable
create UserCreateWithoutShopsInput | UserUncheckedCreateWithoutShopsInput No
connectOrCreate UserCreateOrConnectWithoutShopsInput No
upsert UserUpsertWithoutShopsInput No
disconnect Boolean No
delete Boolean No
connect UserWhereUniqueInput No
update UserUpdateWithoutShopsInput | UserUncheckedUpdateWithoutShopsInput No


OrderUpdateManyWithoutShopNestedInput

Name Type Nullable
create OrderCreateWithoutShopInput | OrderCreateWithoutShopInput[] | OrderUncheckedCreateWithoutShopInput | OrderUncheckedCreateWithoutShopInput[] No
connectOrCreate OrderCreateOrConnectWithoutShopInput | OrderCreateOrConnectWithoutShopInput[] No
upsert OrderUpsertWithWhereUniqueWithoutShopInput | OrderUpsertWithWhereUniqueWithoutShopInput[] No
createMany OrderCreateManyShopInputEnvelope No
set OrderWhereUniqueInput | OrderWhereUniqueInput[] No
disconnect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
delete OrderWhereUniqueInput | OrderWhereUniqueInput[] No
connect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
update OrderUpdateWithWhereUniqueWithoutShopInput | OrderUpdateWithWhereUniqueWithoutShopInput[] No
updateMany OrderUpdateManyWithWhereWithoutShopInput | OrderUpdateManyWithWhereWithoutShopInput[] No
deleteMany OrderScalarWhereInput | OrderScalarWhereInput[] No

BookmarkUpdateManyWithoutShopNestedInput

Name Type Nullable
create BookmarkCreateWithoutShopInput | BookmarkCreateWithoutShopInput[] | BookmarkUncheckedCreateWithoutShopInput | BookmarkUncheckedCreateWithoutShopInput[] No
connectOrCreate BookmarkCreateOrConnectWithoutShopInput | BookmarkCreateOrConnectWithoutShopInput[] No
upsert BookmarkUpsertWithWhereUniqueWithoutShopInput | BookmarkUpsertWithWhereUniqueWithoutShopInput[] No
createMany BookmarkCreateManyShopInputEnvelope No
set BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
disconnect BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
delete BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
connect BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
update BookmarkUpdateWithWhereUniqueWithoutShopInput | BookmarkUpdateWithWhereUniqueWithoutShopInput[] No
updateMany BookmarkUpdateManyWithWhereWithoutShopInput | BookmarkUpdateManyWithWhereWithoutShopInput[] No
deleteMany BookmarkScalarWhereInput | BookmarkScalarWhereInput[] No

WishlistUpdateManyWithoutShopNestedInput

Name Type Nullable
create WishlistCreateWithoutShopInput | WishlistCreateWithoutShopInput[] | WishlistUncheckedCreateWithoutShopInput | WishlistUncheckedCreateWithoutShopInput[] No
connectOrCreate WishlistCreateOrConnectWithoutShopInput | WishlistCreateOrConnectWithoutShopInput[] No
upsert WishlistUpsertWithWhereUniqueWithoutShopInput | WishlistUpsertWithWhereUniqueWithoutShopInput[] No
createMany WishlistCreateManyShopInputEnvelope No
set WishlistWhereUniqueInput | WishlistWhereUniqueInput[] No
disconnect WishlistWhereUniqueInput | WishlistWhereUniqueInput[] No
delete WishlistWhereUniqueInput | WishlistWhereUniqueInput[] No
connect WishlistWhereUniqueInput | WishlistWhereUniqueInput[] No
update WishlistUpdateWithWhereUniqueWithoutShopInput | WishlistUpdateWithWhereUniqueWithoutShopInput[] No
updateMany WishlistUpdateManyWithWhereWithoutShopInput | WishlistUpdateManyWithWhereWithoutShopInput[] No
deleteMany WishlistScalarWhereInput | WishlistScalarWhereInput[] No

Recent_Used_ElementUpdateManyWithoutShopNestedInput

Name Type Nullable
create Recent_Used_ElementCreateWithoutShopInput | Recent_Used_ElementCreateWithoutShopInput[] | Recent_Used_ElementUncheckedCreateWithoutShopInput | Recent_Used_ElementUncheckedCreateWithoutShopInput[] No
connectOrCreate Recent_Used_ElementCreateOrConnectWithoutShopInput | Recent_Used_ElementCreateOrConnectWithoutShopInput[] No
upsert Recent_Used_ElementUpsertWithWhereUniqueWithoutShopInput | Recent_Used_ElementUpsertWithWhereUniqueWithoutShopInput[] No
createMany Recent_Used_ElementCreateManyShopInputEnvelope No
set Recent_Used_ElementWhereUniqueInput | Recent_Used_ElementWhereUniqueInput[] No
disconnect Recent_Used_ElementWhereUniqueInput | Recent_Used_ElementWhereUniqueInput[] No
delete Recent_Used_ElementWhereUniqueInput | Recent_Used_ElementWhereUniqueInput[] No
connect Recent_Used_ElementWhereUniqueInput | Recent_Used_ElementWhereUniqueInput[] No
update Recent_Used_ElementUpdateWithWhereUniqueWithoutShopInput | Recent_Used_ElementUpdateWithWhereUniqueWithoutShopInput[] No
updateMany Recent_Used_ElementUpdateManyWithWhereWithoutShopInput | Recent_Used_ElementUpdateManyWithWhereWithoutShopInput[] No
deleteMany Recent_Used_ElementScalarWhereInput | Recent_Used_ElementScalarWhereInput[] No

Affiliator_CommissionUpdateManyWithoutShopNestedInput

Name Type Nullable
create Affiliator_CommissionCreateWithoutShopInput | Affiliator_CommissionCreateWithoutShopInput[] | Affiliator_CommissionUncheckedCreateWithoutShopInput | Affiliator_CommissionUncheckedCreateWithoutShopInput[] No
connectOrCreate Affiliator_CommissionCreateOrConnectWithoutShopInput | Affiliator_CommissionCreateOrConnectWithoutShopInput[] No
upsert Affiliator_CommissionUpsertWithWhereUniqueWithoutShopInput | Affiliator_CommissionUpsertWithWhereUniqueWithoutShopInput[] No
createMany Affiliator_CommissionCreateManyShopInputEnvelope No
set Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
disconnect Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
delete Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
connect Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
update Affiliator_CommissionUpdateWithWhereUniqueWithoutShopInput | Affiliator_CommissionUpdateWithWhereUniqueWithoutShopInput[] No
updateMany Affiliator_CommissionUpdateManyWithWhereWithoutShopInput | Affiliator_CommissionUpdateManyWithWhereWithoutShopInput[] No
deleteMany Affiliator_CommissionScalarWhereInput | Affiliator_CommissionScalarWhereInput[] No

OrderUncheckedUpdateManyWithoutShopNestedInput

Name Type Nullable
create OrderCreateWithoutShopInput | OrderCreateWithoutShopInput[] | OrderUncheckedCreateWithoutShopInput | OrderUncheckedCreateWithoutShopInput[] No
connectOrCreate OrderCreateOrConnectWithoutShopInput | OrderCreateOrConnectWithoutShopInput[] No
upsert OrderUpsertWithWhereUniqueWithoutShopInput | OrderUpsertWithWhereUniqueWithoutShopInput[] No
createMany OrderCreateManyShopInputEnvelope No
set OrderWhereUniqueInput | OrderWhereUniqueInput[] No
disconnect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
delete OrderWhereUniqueInput | OrderWhereUniqueInput[] No
connect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
update OrderUpdateWithWhereUniqueWithoutShopInput | OrderUpdateWithWhereUniqueWithoutShopInput[] No
updateMany OrderUpdateManyWithWhereWithoutShopInput | OrderUpdateManyWithWhereWithoutShopInput[] No
deleteMany OrderScalarWhereInput | OrderScalarWhereInput[] No

BookmarkUncheckedUpdateManyWithoutShopNestedInput

Name Type Nullable
create BookmarkCreateWithoutShopInput | BookmarkCreateWithoutShopInput[] | BookmarkUncheckedCreateWithoutShopInput | BookmarkUncheckedCreateWithoutShopInput[] No
connectOrCreate BookmarkCreateOrConnectWithoutShopInput | BookmarkCreateOrConnectWithoutShopInput[] No
upsert BookmarkUpsertWithWhereUniqueWithoutShopInput | BookmarkUpsertWithWhereUniqueWithoutShopInput[] No
createMany BookmarkCreateManyShopInputEnvelope No
set BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
disconnect BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
delete BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
connect BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
update BookmarkUpdateWithWhereUniqueWithoutShopInput | BookmarkUpdateWithWhereUniqueWithoutShopInput[] No
updateMany BookmarkUpdateManyWithWhereWithoutShopInput | BookmarkUpdateManyWithWhereWithoutShopInput[] No
deleteMany BookmarkScalarWhereInput | BookmarkScalarWhereInput[] No

WishlistUncheckedUpdateManyWithoutShopNestedInput

Name Type Nullable
create WishlistCreateWithoutShopInput | WishlistCreateWithoutShopInput[] | WishlistUncheckedCreateWithoutShopInput | WishlistUncheckedCreateWithoutShopInput[] No
connectOrCreate WishlistCreateOrConnectWithoutShopInput | WishlistCreateOrConnectWithoutShopInput[] No
upsert WishlistUpsertWithWhereUniqueWithoutShopInput | WishlistUpsertWithWhereUniqueWithoutShopInput[] No
createMany WishlistCreateManyShopInputEnvelope No
set WishlistWhereUniqueInput | WishlistWhereUniqueInput[] No
disconnect WishlistWhereUniqueInput | WishlistWhereUniqueInput[] No
delete WishlistWhereUniqueInput | WishlistWhereUniqueInput[] No
connect WishlistWhereUniqueInput | WishlistWhereUniqueInput[] No
update WishlistUpdateWithWhereUniqueWithoutShopInput | WishlistUpdateWithWhereUniqueWithoutShopInput[] No
updateMany WishlistUpdateManyWithWhereWithoutShopInput | WishlistUpdateManyWithWhereWithoutShopInput[] No
deleteMany WishlistScalarWhereInput | WishlistScalarWhereInput[] No

Recent_Used_ElementUncheckedUpdateManyWithoutShopNestedInput

Name Type Nullable
create Recent_Used_ElementCreateWithoutShopInput | Recent_Used_ElementCreateWithoutShopInput[] | Recent_Used_ElementUncheckedCreateWithoutShopInput | Recent_Used_ElementUncheckedCreateWithoutShopInput[] No
connectOrCreate Recent_Used_ElementCreateOrConnectWithoutShopInput | Recent_Used_ElementCreateOrConnectWithoutShopInput[] No
upsert Recent_Used_ElementUpsertWithWhereUniqueWithoutShopInput | Recent_Used_ElementUpsertWithWhereUniqueWithoutShopInput[] No
createMany Recent_Used_ElementCreateManyShopInputEnvelope No
set Recent_Used_ElementWhereUniqueInput | Recent_Used_ElementWhereUniqueInput[] No
disconnect Recent_Used_ElementWhereUniqueInput | Recent_Used_ElementWhereUniqueInput[] No
delete Recent_Used_ElementWhereUniqueInput | Recent_Used_ElementWhereUniqueInput[] No
connect Recent_Used_ElementWhereUniqueInput | Recent_Used_ElementWhereUniqueInput[] No
update Recent_Used_ElementUpdateWithWhereUniqueWithoutShopInput | Recent_Used_ElementUpdateWithWhereUniqueWithoutShopInput[] No
updateMany Recent_Used_ElementUpdateManyWithWhereWithoutShopInput | Recent_Used_ElementUpdateManyWithWhereWithoutShopInput[] No
deleteMany Recent_Used_ElementScalarWhereInput | Recent_Used_ElementScalarWhereInput[] No

Affiliator_CommissionUncheckedUpdateManyWithoutShopNestedInput

Name Type Nullable
create Affiliator_CommissionCreateWithoutShopInput | Affiliator_CommissionCreateWithoutShopInput[] | Affiliator_CommissionUncheckedCreateWithoutShopInput | Affiliator_CommissionUncheckedCreateWithoutShopInput[] No
connectOrCreate Affiliator_CommissionCreateOrConnectWithoutShopInput | Affiliator_CommissionCreateOrConnectWithoutShopInput[] No
upsert Affiliator_CommissionUpsertWithWhereUniqueWithoutShopInput | Affiliator_CommissionUpsertWithWhereUniqueWithoutShopInput[] No
createMany Affiliator_CommissionCreateManyShopInputEnvelope No
set Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
disconnect Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
delete Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
connect Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
update Affiliator_CommissionUpdateWithWhereUniqueWithoutShopInput | Affiliator_CommissionUpdateWithWhereUniqueWithoutShopInput[] No
updateMany Affiliator_CommissionUpdateManyWithWhereWithoutShopInput | Affiliator_CommissionUpdateManyWithWhereWithoutShopInput[] No
deleteMany Affiliator_CommissionScalarWhereInput | Affiliator_CommissionScalarWhereInput[] No

UserCreateNestedOneWithoutElementsInput

Name Type Nullable
create UserCreateWithoutElementsInput | UserUncheckedCreateWithoutElementsInput No
connectOrCreate UserCreateOrConnectWithoutElementsInput No
connect UserWhereUniqueInput No

















EnumGenericStatusFieldUpdateOperationsInput

Name Type Nullable
set GenericStatus No

EnumElementTypeFieldUpdateOperationsInput

Name Type Nullable
set ElementType No

DecimalFieldUpdateOperationsInput

Name Type Nullable
set Decimal No
increment Decimal No
decrement Decimal No
multiply Decimal No
divide Decimal No

NullableEnumDiscountTypeFieldUpdateOperationsInput

Name Type Nullable
set DiscountType | Null Yes

NullableDecimalFieldUpdateOperationsInput

Name Type Nullable
set Decimal | Null Yes
increment Decimal No
decrement Decimal No
multiply Decimal No
divide Decimal No

UserUpdateOneWithoutElementsNestedInput

Name Type Nullable
create UserCreateWithoutElementsInput | UserUncheckedCreateWithoutElementsInput No
connectOrCreate UserCreateOrConnectWithoutElementsInput No
upsert UserUpsertWithoutElementsInput No
disconnect Boolean No
delete Boolean No
connect UserWhereUniqueInput No
update UserUpdateWithoutElementsInput | UserUncheckedUpdateWithoutElementsInput No

Element_ImageUpdateManyWithoutElementNestedInput

Name Type Nullable
create Element_ImageCreateWithoutElementInput | Element_ImageCreateWithoutElementInput[] | Element_ImageUncheckedCreateWithoutElementInput | Element_ImageUncheckedCreateWithoutElementInput[] No
connectOrCreate Element_ImageCreateOrConnectWithoutElementInput | Element_ImageCreateOrConnectWithoutElementInput[] No
upsert Element_ImageUpsertWithWhereUniqueWithoutElementInput | Element_ImageUpsertWithWhereUniqueWithoutElementInput[] No
createMany Element_ImageCreateManyElementInputEnvelope No
set Element_ImageWhereUniqueInput | Element_ImageWhereUniqueInput[] No
disconnect Element_ImageWhereUniqueInput | Element_ImageWhereUniqueInput[] No
delete Element_ImageWhereUniqueInput | Element_ImageWhereUniqueInput[] No
connect Element_ImageWhereUniqueInput | Element_ImageWhereUniqueInput[] No
update Element_ImageUpdateWithWhereUniqueWithoutElementInput | Element_ImageUpdateWithWhereUniqueWithoutElementInput[] No
updateMany Element_ImageUpdateManyWithWhereWithoutElementInput | Element_ImageUpdateManyWithWhereWithoutElementInput[] No
deleteMany Element_ImageScalarWhereInput | Element_ImageScalarWhereInput[] No

Element_Best_UseUpdateManyWithoutElementNestedInput

Name Type Nullable
create Element_Best_UseCreateWithoutElementInput | Element_Best_UseCreateWithoutElementInput[] | Element_Best_UseUncheckedCreateWithoutElementInput | Element_Best_UseUncheckedCreateWithoutElementInput[] No
connectOrCreate Element_Best_UseCreateOrConnectWithoutElementInput | Element_Best_UseCreateOrConnectWithoutElementInput[] No
upsert Element_Best_UseUpsertWithWhereUniqueWithoutElementInput | Element_Best_UseUpsertWithWhereUniqueWithoutElementInput[] No
createMany Element_Best_UseCreateManyElementInputEnvelope No
set Element_Best_UseWhereUniqueInput | Element_Best_UseWhereUniqueInput[] No
disconnect Element_Best_UseWhereUniqueInput | Element_Best_UseWhereUniqueInput[] No
delete Element_Best_UseWhereUniqueInput | Element_Best_UseWhereUniqueInput[] No
connect Element_Best_UseWhereUniqueInput | Element_Best_UseWhereUniqueInput[] No
update Element_Best_UseUpdateWithWhereUniqueWithoutElementInput | Element_Best_UseUpdateWithWhereUniqueWithoutElementInput[] No
updateMany Element_Best_UseUpdateManyWithWhereWithoutElementInput | Element_Best_UseUpdateManyWithWhereWithoutElementInput[] No
deleteMany Element_Best_UseScalarWhereInput | Element_Best_UseScalarWhereInput[] No

Element_TagUpdateManyWithoutElementNestedInput

Name Type Nullable
create Element_TagCreateWithoutElementInput | Element_TagCreateWithoutElementInput[] | Element_TagUncheckedCreateWithoutElementInput | Element_TagUncheckedCreateWithoutElementInput[] No
connectOrCreate Element_TagCreateOrConnectWithoutElementInput | Element_TagCreateOrConnectWithoutElementInput[] No
upsert Element_TagUpsertWithWhereUniqueWithoutElementInput | Element_TagUpsertWithWhereUniqueWithoutElementInput[] No
createMany Element_TagCreateManyElementInputEnvelope No
set Element_TagWhereUniqueInput | Element_TagWhereUniqueInput[] No
disconnect Element_TagWhereUniqueInput | Element_TagWhereUniqueInput[] No
delete Element_TagWhereUniqueInput | Element_TagWhereUniqueInput[] No
connect Element_TagWhereUniqueInput | Element_TagWhereUniqueInput[] No
update Element_TagUpdateWithWhereUniqueWithoutElementInput | Element_TagUpdateWithWhereUniqueWithoutElementInput[] No
updateMany Element_TagUpdateManyWithWhereWithoutElementInput | Element_TagUpdateManyWithWhereWithoutElementInput[] No
deleteMany Element_TagScalarWhereInput | Element_TagScalarWhereInput[] No

Element_CategoryUpdateManyWithoutElementNestedInput

Name Type Nullable
create Element_CategoryCreateWithoutElementInput | Element_CategoryCreateWithoutElementInput[] | Element_CategoryUncheckedCreateWithoutElementInput | Element_CategoryUncheckedCreateWithoutElementInput[] No
connectOrCreate Element_CategoryCreateOrConnectWithoutElementInput | Element_CategoryCreateOrConnectWithoutElementInput[] No
upsert Element_CategoryUpsertWithWhereUniqueWithoutElementInput | Element_CategoryUpsertWithWhereUniqueWithoutElementInput[] No
createMany Element_CategoryCreateManyElementInputEnvelope No
set Element_CategoryWhereUniqueInput | Element_CategoryWhereUniqueInput[] No
disconnect Element_CategoryWhereUniqueInput | Element_CategoryWhereUniqueInput[] No
delete Element_CategoryWhereUniqueInput | Element_CategoryWhereUniqueInput[] No
connect Element_CategoryWhereUniqueInput | Element_CategoryWhereUniqueInput[] No
update Element_CategoryUpdateWithWhereUniqueWithoutElementInput | Element_CategoryUpdateWithWhereUniqueWithoutElementInput[] No
updateMany Element_CategoryUpdateManyWithWhereWithoutElementInput | Element_CategoryUpdateManyWithWhereWithoutElementInput[] No
deleteMany Element_CategoryScalarWhereInput | Element_CategoryScalarWhereInput[] No

Bundle_ElementUpdateManyWithoutElementNestedInput

Name Type Nullable
create Bundle_ElementCreateWithoutElementInput | Bundle_ElementCreateWithoutElementInput[] | Bundle_ElementUncheckedCreateWithoutElementInput | Bundle_ElementUncheckedCreateWithoutElementInput[] No
connectOrCreate Bundle_ElementCreateOrConnectWithoutElementInput | Bundle_ElementCreateOrConnectWithoutElementInput[] No
upsert Bundle_ElementUpsertWithWhereUniqueWithoutElementInput | Bundle_ElementUpsertWithWhereUniqueWithoutElementInput[] No
createMany Bundle_ElementCreateManyElementInputEnvelope No
set Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] No
disconnect Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] No
delete Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] No
connect Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] No
update Bundle_ElementUpdateWithWhereUniqueWithoutElementInput | Bundle_ElementUpdateWithWhereUniqueWithoutElementInput[] No
updateMany Bundle_ElementUpdateManyWithWhereWithoutElementInput | Bundle_ElementUpdateManyWithWhereWithoutElementInput[] No
deleteMany Bundle_ElementScalarWhereInput | Bundle_ElementScalarWhereInput[] No

WishlistUpdateManyWithoutElementNestedInput

Name Type Nullable
create WishlistCreateWithoutElementInput | WishlistCreateWithoutElementInput[] | WishlistUncheckedCreateWithoutElementInput | WishlistUncheckedCreateWithoutElementInput[] No
connectOrCreate WishlistCreateOrConnectWithoutElementInput | WishlistCreateOrConnectWithoutElementInput[] No
upsert WishlistUpsertWithWhereUniqueWithoutElementInput | WishlistUpsertWithWhereUniqueWithoutElementInput[] No
createMany WishlistCreateManyElementInputEnvelope No
set WishlistWhereUniqueInput | WishlistWhereUniqueInput[] No
disconnect WishlistWhereUniqueInput | WishlistWhereUniqueInput[] No
delete WishlistWhereUniqueInput | WishlistWhereUniqueInput[] No
connect WishlistWhereUniqueInput | WishlistWhereUniqueInput[] No
update WishlistUpdateWithWhereUniqueWithoutElementInput | WishlistUpdateWithWhereUniqueWithoutElementInput[] No
updateMany WishlistUpdateManyWithWhereWithoutElementInput | WishlistUpdateManyWithWhereWithoutElementInput[] No
deleteMany WishlistScalarWhereInput | WishlistScalarWhereInput[] No

BookmarkUpdateManyWithoutElementNestedInput

Name Type Nullable
create BookmarkCreateWithoutElementInput | BookmarkCreateWithoutElementInput[] | BookmarkUncheckedCreateWithoutElementInput | BookmarkUncheckedCreateWithoutElementInput[] No
connectOrCreate BookmarkCreateOrConnectWithoutElementInput | BookmarkCreateOrConnectWithoutElementInput[] No
upsert BookmarkUpsertWithWhereUniqueWithoutElementInput | BookmarkUpsertWithWhereUniqueWithoutElementInput[] No
createMany BookmarkCreateManyElementInputEnvelope No
set BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
disconnect BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
delete BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
connect BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
update BookmarkUpdateWithWhereUniqueWithoutElementInput | BookmarkUpdateWithWhereUniqueWithoutElementInput[] No
updateMany BookmarkUpdateManyWithWhereWithoutElementInput | BookmarkUpdateManyWithWhereWithoutElementInput[] No
deleteMany BookmarkScalarWhereInput | BookmarkScalarWhereInput[] No

Recent_Used_ElementUpdateManyWithoutElementNestedInput

Name Type Nullable
create Recent_Used_ElementCreateWithoutElementInput | Recent_Used_ElementCreateWithoutElementInput[] | Recent_Used_ElementUncheckedCreateWithoutElementInput | Recent_Used_ElementUncheckedCreateWithoutElementInput[] No
connectOrCreate Recent_Used_ElementCreateOrConnectWithoutElementInput | Recent_Used_ElementCreateOrConnectWithoutElementInput[] No
upsert Recent_Used_ElementUpsertWithWhereUniqueWithoutElementInput | Recent_Used_ElementUpsertWithWhereUniqueWithoutElementInput[] No
createMany Recent_Used_ElementCreateManyElementInputEnvelope No
set Recent_Used_ElementWhereUniqueInput | Recent_Used_ElementWhereUniqueInput[] No
disconnect Recent_Used_ElementWhereUniqueInput | Recent_Used_ElementWhereUniqueInput[] No
delete Recent_Used_ElementWhereUniqueInput | Recent_Used_ElementWhereUniqueInput[] No
connect Recent_Used_ElementWhereUniqueInput | Recent_Used_ElementWhereUniqueInput[] No
update Recent_Used_ElementUpdateWithWhereUniqueWithoutElementInput | Recent_Used_ElementUpdateWithWhereUniqueWithoutElementInput[] No
updateMany Recent_Used_ElementUpdateManyWithWhereWithoutElementInput | Recent_Used_ElementUpdateManyWithWhereWithoutElementInput[] No
deleteMany Recent_Used_ElementScalarWhereInput | Recent_Used_ElementScalarWhereInput[] No

Element_ImageUncheckedUpdateManyWithoutElementNestedInput

Name Type Nullable
create Element_ImageCreateWithoutElementInput | Element_ImageCreateWithoutElementInput[] | Element_ImageUncheckedCreateWithoutElementInput | Element_ImageUncheckedCreateWithoutElementInput[] No
connectOrCreate Element_ImageCreateOrConnectWithoutElementInput | Element_ImageCreateOrConnectWithoutElementInput[] No
upsert Element_ImageUpsertWithWhereUniqueWithoutElementInput | Element_ImageUpsertWithWhereUniqueWithoutElementInput[] No
createMany Element_ImageCreateManyElementInputEnvelope No
set Element_ImageWhereUniqueInput | Element_ImageWhereUniqueInput[] No
disconnect Element_ImageWhereUniqueInput | Element_ImageWhereUniqueInput[] No
delete Element_ImageWhereUniqueInput | Element_ImageWhereUniqueInput[] No
connect Element_ImageWhereUniqueInput | Element_ImageWhereUniqueInput[] No
update Element_ImageUpdateWithWhereUniqueWithoutElementInput | Element_ImageUpdateWithWhereUniqueWithoutElementInput[] No
updateMany Element_ImageUpdateManyWithWhereWithoutElementInput | Element_ImageUpdateManyWithWhereWithoutElementInput[] No
deleteMany Element_ImageScalarWhereInput | Element_ImageScalarWhereInput[] No

Element_Best_UseUncheckedUpdateManyWithoutElementNestedInput

Name Type Nullable
create Element_Best_UseCreateWithoutElementInput | Element_Best_UseCreateWithoutElementInput[] | Element_Best_UseUncheckedCreateWithoutElementInput | Element_Best_UseUncheckedCreateWithoutElementInput[] No
connectOrCreate Element_Best_UseCreateOrConnectWithoutElementInput | Element_Best_UseCreateOrConnectWithoutElementInput[] No
upsert Element_Best_UseUpsertWithWhereUniqueWithoutElementInput | Element_Best_UseUpsertWithWhereUniqueWithoutElementInput[] No
createMany Element_Best_UseCreateManyElementInputEnvelope No
set Element_Best_UseWhereUniqueInput | Element_Best_UseWhereUniqueInput[] No
disconnect Element_Best_UseWhereUniqueInput | Element_Best_UseWhereUniqueInput[] No
delete Element_Best_UseWhereUniqueInput | Element_Best_UseWhereUniqueInput[] No
connect Element_Best_UseWhereUniqueInput | Element_Best_UseWhereUniqueInput[] No
update Element_Best_UseUpdateWithWhereUniqueWithoutElementInput | Element_Best_UseUpdateWithWhereUniqueWithoutElementInput[] No
updateMany Element_Best_UseUpdateManyWithWhereWithoutElementInput | Element_Best_UseUpdateManyWithWhereWithoutElementInput[] No
deleteMany Element_Best_UseScalarWhereInput | Element_Best_UseScalarWhereInput[] No

Element_TagUncheckedUpdateManyWithoutElementNestedInput

Name Type Nullable
create Element_TagCreateWithoutElementInput | Element_TagCreateWithoutElementInput[] | Element_TagUncheckedCreateWithoutElementInput | Element_TagUncheckedCreateWithoutElementInput[] No
connectOrCreate Element_TagCreateOrConnectWithoutElementInput | Element_TagCreateOrConnectWithoutElementInput[] No
upsert Element_TagUpsertWithWhereUniqueWithoutElementInput | Element_TagUpsertWithWhereUniqueWithoutElementInput[] No
createMany Element_TagCreateManyElementInputEnvelope No
set Element_TagWhereUniqueInput | Element_TagWhereUniqueInput[] No
disconnect Element_TagWhereUniqueInput | Element_TagWhereUniqueInput[] No
delete Element_TagWhereUniqueInput | Element_TagWhereUniqueInput[] No
connect Element_TagWhereUniqueInput | Element_TagWhereUniqueInput[] No
update Element_TagUpdateWithWhereUniqueWithoutElementInput | Element_TagUpdateWithWhereUniqueWithoutElementInput[] No
updateMany Element_TagUpdateManyWithWhereWithoutElementInput | Element_TagUpdateManyWithWhereWithoutElementInput[] No
deleteMany Element_TagScalarWhereInput | Element_TagScalarWhereInput[] No

Element_CategoryUncheckedUpdateManyWithoutElementNestedInput

Name Type Nullable
create Element_CategoryCreateWithoutElementInput | Element_CategoryCreateWithoutElementInput[] | Element_CategoryUncheckedCreateWithoutElementInput | Element_CategoryUncheckedCreateWithoutElementInput[] No
connectOrCreate Element_CategoryCreateOrConnectWithoutElementInput | Element_CategoryCreateOrConnectWithoutElementInput[] No
upsert Element_CategoryUpsertWithWhereUniqueWithoutElementInput | Element_CategoryUpsertWithWhereUniqueWithoutElementInput[] No
createMany Element_CategoryCreateManyElementInputEnvelope No
set Element_CategoryWhereUniqueInput | Element_CategoryWhereUniqueInput[] No
disconnect Element_CategoryWhereUniqueInput | Element_CategoryWhereUniqueInput[] No
delete Element_CategoryWhereUniqueInput | Element_CategoryWhereUniqueInput[] No
connect Element_CategoryWhereUniqueInput | Element_CategoryWhereUniqueInput[] No
update Element_CategoryUpdateWithWhereUniqueWithoutElementInput | Element_CategoryUpdateWithWhereUniqueWithoutElementInput[] No
updateMany Element_CategoryUpdateManyWithWhereWithoutElementInput | Element_CategoryUpdateManyWithWhereWithoutElementInput[] No
deleteMany Element_CategoryScalarWhereInput | Element_CategoryScalarWhereInput[] No

Bundle_ElementUncheckedUpdateManyWithoutElementNestedInput

Name Type Nullable
create Bundle_ElementCreateWithoutElementInput | Bundle_ElementCreateWithoutElementInput[] | Bundle_ElementUncheckedCreateWithoutElementInput | Bundle_ElementUncheckedCreateWithoutElementInput[] No
connectOrCreate Bundle_ElementCreateOrConnectWithoutElementInput | Bundle_ElementCreateOrConnectWithoutElementInput[] No
upsert Bundle_ElementUpsertWithWhereUniqueWithoutElementInput | Bundle_ElementUpsertWithWhereUniqueWithoutElementInput[] No
createMany Bundle_ElementCreateManyElementInputEnvelope No
set Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] No
disconnect Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] No
delete Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] No
connect Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] No
update Bundle_ElementUpdateWithWhereUniqueWithoutElementInput | Bundle_ElementUpdateWithWhereUniqueWithoutElementInput[] No
updateMany Bundle_ElementUpdateManyWithWhereWithoutElementInput | Bundle_ElementUpdateManyWithWhereWithoutElementInput[] No
deleteMany Bundle_ElementScalarWhereInput | Bundle_ElementScalarWhereInput[] No

WishlistUncheckedUpdateManyWithoutElementNestedInput

Name Type Nullable
create WishlistCreateWithoutElementInput | WishlistCreateWithoutElementInput[] | WishlistUncheckedCreateWithoutElementInput | WishlistUncheckedCreateWithoutElementInput[] No
connectOrCreate WishlistCreateOrConnectWithoutElementInput | WishlistCreateOrConnectWithoutElementInput[] No
upsert WishlistUpsertWithWhereUniqueWithoutElementInput | WishlistUpsertWithWhereUniqueWithoutElementInput[] No
createMany WishlistCreateManyElementInputEnvelope No
set WishlistWhereUniqueInput | WishlistWhereUniqueInput[] No
disconnect WishlistWhereUniqueInput | WishlistWhereUniqueInput[] No
delete WishlistWhereUniqueInput | WishlistWhereUniqueInput[] No
connect WishlistWhereUniqueInput | WishlistWhereUniqueInput[] No
update WishlistUpdateWithWhereUniqueWithoutElementInput | WishlistUpdateWithWhereUniqueWithoutElementInput[] No
updateMany WishlistUpdateManyWithWhereWithoutElementInput | WishlistUpdateManyWithWhereWithoutElementInput[] No
deleteMany WishlistScalarWhereInput | WishlistScalarWhereInput[] No

BookmarkUncheckedUpdateManyWithoutElementNestedInput

Name Type Nullable
create BookmarkCreateWithoutElementInput | BookmarkCreateWithoutElementInput[] | BookmarkUncheckedCreateWithoutElementInput | BookmarkUncheckedCreateWithoutElementInput[] No
connectOrCreate BookmarkCreateOrConnectWithoutElementInput | BookmarkCreateOrConnectWithoutElementInput[] No
upsert BookmarkUpsertWithWhereUniqueWithoutElementInput | BookmarkUpsertWithWhereUniqueWithoutElementInput[] No
createMany BookmarkCreateManyElementInputEnvelope No
set BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
disconnect BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
delete BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
connect BookmarkWhereUniqueInput | BookmarkWhereUniqueInput[] No
update BookmarkUpdateWithWhereUniqueWithoutElementInput | BookmarkUpdateWithWhereUniqueWithoutElementInput[] No
updateMany BookmarkUpdateManyWithWhereWithoutElementInput | BookmarkUpdateManyWithWhereWithoutElementInput[] No
deleteMany BookmarkScalarWhereInput | BookmarkScalarWhereInput[] No

Recent_Used_ElementUncheckedUpdateManyWithoutElementNestedInput

Name Type Nullable
create Recent_Used_ElementCreateWithoutElementInput | Recent_Used_ElementCreateWithoutElementInput[] | Recent_Used_ElementUncheckedCreateWithoutElementInput | Recent_Used_ElementUncheckedCreateWithoutElementInput[] No
connectOrCreate Recent_Used_ElementCreateOrConnectWithoutElementInput | Recent_Used_ElementCreateOrConnectWithoutElementInput[] No
upsert Recent_Used_ElementUpsertWithWhereUniqueWithoutElementInput | Recent_Used_ElementUpsertWithWhereUniqueWithoutElementInput[] No
createMany Recent_Used_ElementCreateManyElementInputEnvelope No
set Recent_Used_ElementWhereUniqueInput | Recent_Used_ElementWhereUniqueInput[] No
disconnect Recent_Used_ElementWhereUniqueInput | Recent_Used_ElementWhereUniqueInput[] No
delete Recent_Used_ElementWhereUniqueInput | Recent_Used_ElementWhereUniqueInput[] No
connect Recent_Used_ElementWhereUniqueInput | Recent_Used_ElementWhereUniqueInput[] No
update Recent_Used_ElementUpdateWithWhereUniqueWithoutElementInput | Recent_Used_ElementUpdateWithWhereUniqueWithoutElementInput[] No
updateMany Recent_Used_ElementUpdateManyWithWhereWithoutElementInput | Recent_Used_ElementUpdateManyWithWhereWithoutElementInput[] No
deleteMany Recent_Used_ElementScalarWhereInput | Recent_Used_ElementScalarWhereInput[] No

UserCreateNestedOneWithoutBundlesInput

Name Type Nullable
create UserCreateWithoutBundlesInput | UserUncheckedCreateWithoutBundlesInput No
connectOrCreate UserCreateOrConnectWithoutBundlesInput No
connect UserWhereUniqueInput No







EnumBundleTypeFieldUpdateOperationsInput

Name Type Nullable
set BundleType No

UserUpdateOneWithoutBundlesNestedInput

Name Type Nullable
create UserCreateWithoutBundlesInput | UserUncheckedCreateWithoutBundlesInput No
connectOrCreate UserCreateOrConnectWithoutBundlesInput No
upsert UserUpsertWithoutBundlesInput No
disconnect Boolean No
delete Boolean No
connect UserWhereUniqueInput No
update UserUpdateWithoutBundlesInput | UserUncheckedUpdateWithoutBundlesInput No

Bundle_ElementUpdateManyWithoutBundleNestedInput

Name Type Nullable
create Bundle_ElementCreateWithoutBundleInput | Bundle_ElementCreateWithoutBundleInput[] | Bundle_ElementUncheckedCreateWithoutBundleInput | Bundle_ElementUncheckedCreateWithoutBundleInput[] No
connectOrCreate Bundle_ElementCreateOrConnectWithoutBundleInput | Bundle_ElementCreateOrConnectWithoutBundleInput[] No
upsert Bundle_ElementUpsertWithWhereUniqueWithoutBundleInput | Bundle_ElementUpsertWithWhereUniqueWithoutBundleInput[] No
createMany Bundle_ElementCreateManyBundleInputEnvelope No
set Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] No
disconnect Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] No
delete Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] No
connect Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] No
update Bundle_ElementUpdateWithWhereUniqueWithoutBundleInput | Bundle_ElementUpdateWithWhereUniqueWithoutBundleInput[] No
updateMany Bundle_ElementUpdateManyWithWhereWithoutBundleInput | Bundle_ElementUpdateManyWithWhereWithoutBundleInput[] No
deleteMany Bundle_ElementScalarWhereInput | Bundle_ElementScalarWhereInput[] No

Bundle_ImageUpdateManyWithoutBundleNestedInput

Name Type Nullable
create Bundle_ImageCreateWithoutBundleInput | Bundle_ImageCreateWithoutBundleInput[] | Bundle_ImageUncheckedCreateWithoutBundleInput | Bundle_ImageUncheckedCreateWithoutBundleInput[] No
connectOrCreate Bundle_ImageCreateOrConnectWithoutBundleInput | Bundle_ImageCreateOrConnectWithoutBundleInput[] No
upsert Bundle_ImageUpsertWithWhereUniqueWithoutBundleInput | Bundle_ImageUpsertWithWhereUniqueWithoutBundleInput[] No
createMany Bundle_ImageCreateManyBundleInputEnvelope No
set Bundle_ImageWhereUniqueInput | Bundle_ImageWhereUniqueInput[] No
disconnect Bundle_ImageWhereUniqueInput | Bundle_ImageWhereUniqueInput[] No
delete Bundle_ImageWhereUniqueInput | Bundle_ImageWhereUniqueInput[] No
connect Bundle_ImageWhereUniqueInput | Bundle_ImageWhereUniqueInput[] No
update Bundle_ImageUpdateWithWhereUniqueWithoutBundleInput | Bundle_ImageUpdateWithWhereUniqueWithoutBundleInput[] No
updateMany Bundle_ImageUpdateManyWithWhereWithoutBundleInput | Bundle_ImageUpdateManyWithWhereWithoutBundleInput[] No
deleteMany Bundle_ImageScalarWhereInput | Bundle_ImageScalarWhereInput[] No

Bundle_CategoryUpdateManyWithoutBundleNestedInput

Name Type Nullable
create Bundle_CategoryCreateWithoutBundleInput | Bundle_CategoryCreateWithoutBundleInput[] | Bundle_CategoryUncheckedCreateWithoutBundleInput | Bundle_CategoryUncheckedCreateWithoutBundleInput[] No
connectOrCreate Bundle_CategoryCreateOrConnectWithoutBundleInput | Bundle_CategoryCreateOrConnectWithoutBundleInput[] No
upsert Bundle_CategoryUpsertWithWhereUniqueWithoutBundleInput | Bundle_CategoryUpsertWithWhereUniqueWithoutBundleInput[] No
createMany Bundle_CategoryCreateManyBundleInputEnvelope No
set Bundle_CategoryWhereUniqueInput | Bundle_CategoryWhereUniqueInput[] No
disconnect Bundle_CategoryWhereUniqueInput | Bundle_CategoryWhereUniqueInput[] No
delete Bundle_CategoryWhereUniqueInput | Bundle_CategoryWhereUniqueInput[] No
connect Bundle_CategoryWhereUniqueInput | Bundle_CategoryWhereUniqueInput[] No
update Bundle_CategoryUpdateWithWhereUniqueWithoutBundleInput | Bundle_CategoryUpdateWithWhereUniqueWithoutBundleInput[] No
updateMany Bundle_CategoryUpdateManyWithWhereWithoutBundleInput | Bundle_CategoryUpdateManyWithWhereWithoutBundleInput[] No
deleteMany Bundle_CategoryScalarWhereInput | Bundle_CategoryScalarWhereInput[] No

Bundle_ElementUncheckedUpdateManyWithoutBundleNestedInput

Name Type Nullable
create Bundle_ElementCreateWithoutBundleInput | Bundle_ElementCreateWithoutBundleInput[] | Bundle_ElementUncheckedCreateWithoutBundleInput | Bundle_ElementUncheckedCreateWithoutBundleInput[] No
connectOrCreate Bundle_ElementCreateOrConnectWithoutBundleInput | Bundle_ElementCreateOrConnectWithoutBundleInput[] No
upsert Bundle_ElementUpsertWithWhereUniqueWithoutBundleInput | Bundle_ElementUpsertWithWhereUniqueWithoutBundleInput[] No
createMany Bundle_ElementCreateManyBundleInputEnvelope No
set Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] No
disconnect Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] No
delete Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] No
connect Bundle_ElementWhereUniqueInput | Bundle_ElementWhereUniqueInput[] No
update Bundle_ElementUpdateWithWhereUniqueWithoutBundleInput | Bundle_ElementUpdateWithWhereUniqueWithoutBundleInput[] No
updateMany Bundle_ElementUpdateManyWithWhereWithoutBundleInput | Bundle_ElementUpdateManyWithWhereWithoutBundleInput[] No
deleteMany Bundle_ElementScalarWhereInput | Bundle_ElementScalarWhereInput[] No

Bundle_ImageUncheckedUpdateManyWithoutBundleNestedInput

Name Type Nullable
create Bundle_ImageCreateWithoutBundleInput | Bundle_ImageCreateWithoutBundleInput[] | Bundle_ImageUncheckedCreateWithoutBundleInput | Bundle_ImageUncheckedCreateWithoutBundleInput[] No
connectOrCreate Bundle_ImageCreateOrConnectWithoutBundleInput | Bundle_ImageCreateOrConnectWithoutBundleInput[] No
upsert Bundle_ImageUpsertWithWhereUniqueWithoutBundleInput | Bundle_ImageUpsertWithWhereUniqueWithoutBundleInput[] No
createMany Bundle_ImageCreateManyBundleInputEnvelope No
set Bundle_ImageWhereUniqueInput | Bundle_ImageWhereUniqueInput[] No
disconnect Bundle_ImageWhereUniqueInput | Bundle_ImageWhereUniqueInput[] No
delete Bundle_ImageWhereUniqueInput | Bundle_ImageWhereUniqueInput[] No
connect Bundle_ImageWhereUniqueInput | Bundle_ImageWhereUniqueInput[] No
update Bundle_ImageUpdateWithWhereUniqueWithoutBundleInput | Bundle_ImageUpdateWithWhereUniqueWithoutBundleInput[] No
updateMany Bundle_ImageUpdateManyWithWhereWithoutBundleInput | Bundle_ImageUpdateManyWithWhereWithoutBundleInput[] No
deleteMany Bundle_ImageScalarWhereInput | Bundle_ImageScalarWhereInput[] No

Bundle_CategoryUncheckedUpdateManyWithoutBundleNestedInput

Name Type Nullable
create Bundle_CategoryCreateWithoutBundleInput | Bundle_CategoryCreateWithoutBundleInput[] | Bundle_CategoryUncheckedCreateWithoutBundleInput | Bundle_CategoryUncheckedCreateWithoutBundleInput[] No
connectOrCreate Bundle_CategoryCreateOrConnectWithoutBundleInput | Bundle_CategoryCreateOrConnectWithoutBundleInput[] No
upsert Bundle_CategoryUpsertWithWhereUniqueWithoutBundleInput | Bundle_CategoryUpsertWithWhereUniqueWithoutBundleInput[] No
createMany Bundle_CategoryCreateManyBundleInputEnvelope No
set Bundle_CategoryWhereUniqueInput | Bundle_CategoryWhereUniqueInput[] No
disconnect Bundle_CategoryWhereUniqueInput | Bundle_CategoryWhereUniqueInput[] No
delete Bundle_CategoryWhereUniqueInput | Bundle_CategoryWhereUniqueInput[] No
connect Bundle_CategoryWhereUniqueInput | Bundle_CategoryWhereUniqueInput[] No
update Bundle_CategoryUpdateWithWhereUniqueWithoutBundleInput | Bundle_CategoryUpdateWithWhereUniqueWithoutBundleInput[] No
updateMany Bundle_CategoryUpdateManyWithWhereWithoutBundleInput | Bundle_CategoryUpdateManyWithWhereWithoutBundleInput[] No
deleteMany Bundle_CategoryScalarWhereInput | Bundle_CategoryScalarWhereInput[] No

UserCreateNestedOneWithoutBundle_elementsInput

Name Type Nullable
create UserCreateWithoutBundle_elementsInput | UserUncheckedCreateWithoutBundle_elementsInput No
connectOrCreate UserCreateOrConnectWithoutBundle_elementsInput No
connect UserWhereUniqueInput No

BundleCreateNestedOneWithoutElementsInput

Name Type Nullable
create BundleCreateWithoutElementsInput | BundleUncheckedCreateWithoutElementsInput No
connectOrCreate BundleCreateOrConnectWithoutElementsInput No
connect BundleWhereUniqueInput No

ElementCreateNestedOneWithoutBundlesInput

Name Type Nullable
create ElementCreateWithoutBundlesInput | ElementUncheckedCreateWithoutBundlesInput No
connectOrCreate ElementCreateOrConnectWithoutBundlesInput No
connect ElementWhereUniqueInput No


BundleUpdateOneWithoutElementsNestedInput

Name Type Nullable
create BundleCreateWithoutElementsInput | BundleUncheckedCreateWithoutElementsInput No
connectOrCreate BundleCreateOrConnectWithoutElementsInput No
upsert BundleUpsertWithoutElementsInput No
disconnect Boolean No
delete Boolean No
connect BundleWhereUniqueInput No
update BundleUpdateWithoutElementsInput | BundleUncheckedUpdateWithoutElementsInput No

ElementUpdateOneWithoutBundlesNestedInput

Name Type Nullable
create ElementCreateWithoutBundlesInput | ElementUncheckedCreateWithoutBundlesInput No
connectOrCreate ElementCreateOrConnectWithoutBundlesInput No
upsert ElementUpsertWithoutBundlesInput No
disconnect Boolean No
delete Boolean No
connect ElementWhereUniqueInput No
update ElementUpdateWithoutBundlesInput | ElementUncheckedUpdateWithoutBundlesInput No

ElementCreateNestedOneWithoutImagesInput

Name Type Nullable
create ElementCreateWithoutImagesInput | ElementUncheckedCreateWithoutImagesInput No
connectOrCreate ElementCreateOrConnectWithoutImagesInput No
connect ElementWhereUniqueInput No

ElementUpdateOneWithoutImagesNestedInput

Name Type Nullable
create ElementCreateWithoutImagesInput | ElementUncheckedCreateWithoutImagesInput No
connectOrCreate ElementCreateOrConnectWithoutImagesInput No
upsert ElementUpsertWithoutImagesInput No
disconnect Boolean No
delete Boolean No
connect ElementWhereUniqueInput No
update ElementUpdateWithoutImagesInput | ElementUncheckedUpdateWithoutImagesInput No

BundleCreateNestedOneWithoutImagesInput

Name Type Nullable
create BundleCreateWithoutImagesInput | BundleUncheckedCreateWithoutImagesInput No
connectOrCreate BundleCreateOrConnectWithoutImagesInput No
connect BundleWhereUniqueInput No

BundleUpdateOneWithoutImagesNestedInput

Name Type Nullable
create BundleCreateWithoutImagesInput | BundleUncheckedCreateWithoutImagesInput No
connectOrCreate BundleCreateOrConnectWithoutImagesInput No
upsert BundleUpsertWithoutImagesInput No
disconnect Boolean No
delete Boolean No
connect BundleWhereUniqueInput No
update BundleUpdateWithoutImagesInput | BundleUncheckedUpdateWithoutImagesInput No

ElementCreateNestedOneWithoutBest_UsesInput

Name Type Nullable
create ElementCreateWithoutBest_UsesInput | ElementUncheckedCreateWithoutBest_UsesInput No
connectOrCreate ElementCreateOrConnectWithoutBest_UsesInput No
connect ElementWhereUniqueInput No

ElementUpdateOneWithoutBest_UsesNestedInput

Name Type Nullable
create ElementCreateWithoutBest_UsesInput | ElementUncheckedCreateWithoutBest_UsesInput No
connectOrCreate ElementCreateOrConnectWithoutBest_UsesInput No
upsert ElementUpsertWithoutBest_UsesInput No
disconnect Boolean No
delete Boolean No
connect ElementWhereUniqueInput No
update ElementUpdateWithoutBest_UsesInput | ElementUncheckedUpdateWithoutBest_UsesInput No

UserCreateNestedOneWithoutCategoriesInput

Name Type Nullable
create UserCreateWithoutCategoriesInput | UserUncheckedCreateWithoutCategoriesInput No
connectOrCreate UserCreateOrConnectWithoutCategoriesInput No
connect UserWhereUniqueInput No





EnumAssetTypeFieldUpdateOperationsInput

Name Type Nullable
set AssetType No

UserUpdateOneWithoutCategoriesNestedInput

Name Type Nullable
create UserCreateWithoutCategoriesInput | UserUncheckedCreateWithoutCategoriesInput No
connectOrCreate UserCreateOrConnectWithoutCategoriesInput No
upsert UserUpsertWithoutCategoriesInput No
disconnect Boolean No
delete Boolean No
connect UserWhereUniqueInput No
update UserUpdateWithoutCategoriesInput | UserUncheckedUpdateWithoutCategoriesInput No

Element_CategoryUpdateManyWithoutCategoryNestedInput

Name Type Nullable
create Element_CategoryCreateWithoutCategoryInput | Element_CategoryCreateWithoutCategoryInput[] | Element_CategoryUncheckedCreateWithoutCategoryInput | Element_CategoryUncheckedCreateWithoutCategoryInput[] No
connectOrCreate Element_CategoryCreateOrConnectWithoutCategoryInput | Element_CategoryCreateOrConnectWithoutCategoryInput[] No
upsert Element_CategoryUpsertWithWhereUniqueWithoutCategoryInput | Element_CategoryUpsertWithWhereUniqueWithoutCategoryInput[] No
createMany Element_CategoryCreateManyCategoryInputEnvelope No
set Element_CategoryWhereUniqueInput | Element_CategoryWhereUniqueInput[] No
disconnect Element_CategoryWhereUniqueInput | Element_CategoryWhereUniqueInput[] No
delete Element_CategoryWhereUniqueInput | Element_CategoryWhereUniqueInput[] No
connect Element_CategoryWhereUniqueInput | Element_CategoryWhereUniqueInput[] No
update Element_CategoryUpdateWithWhereUniqueWithoutCategoryInput | Element_CategoryUpdateWithWhereUniqueWithoutCategoryInput[] No
updateMany Element_CategoryUpdateManyWithWhereWithoutCategoryInput | Element_CategoryUpdateManyWithWhereWithoutCategoryInput[] No
deleteMany Element_CategoryScalarWhereInput | Element_CategoryScalarWhereInput[] No

Bundle_CategoryUpdateManyWithoutCategoryNestedInput

Name Type Nullable
create Bundle_CategoryCreateWithoutCategoryInput | Bundle_CategoryCreateWithoutCategoryInput[] | Bundle_CategoryUncheckedCreateWithoutCategoryInput | Bundle_CategoryUncheckedCreateWithoutCategoryInput[] No
connectOrCreate Bundle_CategoryCreateOrConnectWithoutCategoryInput | Bundle_CategoryCreateOrConnectWithoutCategoryInput[] No
upsert Bundle_CategoryUpsertWithWhereUniqueWithoutCategoryInput | Bundle_CategoryUpsertWithWhereUniqueWithoutCategoryInput[] No
createMany Bundle_CategoryCreateManyCategoryInputEnvelope No
set Bundle_CategoryWhereUniqueInput | Bundle_CategoryWhereUniqueInput[] No
disconnect Bundle_CategoryWhereUniqueInput | Bundle_CategoryWhereUniqueInput[] No
delete Bundle_CategoryWhereUniqueInput | Bundle_CategoryWhereUniqueInput[] No
connect Bundle_CategoryWhereUniqueInput | Bundle_CategoryWhereUniqueInput[] No
update Bundle_CategoryUpdateWithWhereUniqueWithoutCategoryInput | Bundle_CategoryUpdateWithWhereUniqueWithoutCategoryInput[] No
updateMany Bundle_CategoryUpdateManyWithWhereWithoutCategoryInput | Bundle_CategoryUpdateManyWithWhereWithoutCategoryInput[] No
deleteMany Bundle_CategoryScalarWhereInput | Bundle_CategoryScalarWhereInput[] No

Element_CategoryUncheckedUpdateManyWithoutCategoryNestedInput

Name Type Nullable
create Element_CategoryCreateWithoutCategoryInput | Element_CategoryCreateWithoutCategoryInput[] | Element_CategoryUncheckedCreateWithoutCategoryInput | Element_CategoryUncheckedCreateWithoutCategoryInput[] No
connectOrCreate Element_CategoryCreateOrConnectWithoutCategoryInput | Element_CategoryCreateOrConnectWithoutCategoryInput[] No
upsert Element_CategoryUpsertWithWhereUniqueWithoutCategoryInput | Element_CategoryUpsertWithWhereUniqueWithoutCategoryInput[] No
createMany Element_CategoryCreateManyCategoryInputEnvelope No
set Element_CategoryWhereUniqueInput | Element_CategoryWhereUniqueInput[] No
disconnect Element_CategoryWhereUniqueInput | Element_CategoryWhereUniqueInput[] No
delete Element_CategoryWhereUniqueInput | Element_CategoryWhereUniqueInput[] No
connect Element_CategoryWhereUniqueInput | Element_CategoryWhereUniqueInput[] No
update Element_CategoryUpdateWithWhereUniqueWithoutCategoryInput | Element_CategoryUpdateWithWhereUniqueWithoutCategoryInput[] No
updateMany Element_CategoryUpdateManyWithWhereWithoutCategoryInput | Element_CategoryUpdateManyWithWhereWithoutCategoryInput[] No
deleteMany Element_CategoryScalarWhereInput | Element_CategoryScalarWhereInput[] No

Bundle_CategoryUncheckedUpdateManyWithoutCategoryNestedInput

Name Type Nullable
create Bundle_CategoryCreateWithoutCategoryInput | Bundle_CategoryCreateWithoutCategoryInput[] | Bundle_CategoryUncheckedCreateWithoutCategoryInput | Bundle_CategoryUncheckedCreateWithoutCategoryInput[] No
connectOrCreate Bundle_CategoryCreateOrConnectWithoutCategoryInput | Bundle_CategoryCreateOrConnectWithoutCategoryInput[] No
upsert Bundle_CategoryUpsertWithWhereUniqueWithoutCategoryInput | Bundle_CategoryUpsertWithWhereUniqueWithoutCategoryInput[] No
createMany Bundle_CategoryCreateManyCategoryInputEnvelope No
set Bundle_CategoryWhereUniqueInput | Bundle_CategoryWhereUniqueInput[] No
disconnect Bundle_CategoryWhereUniqueInput | Bundle_CategoryWhereUniqueInput[] No
delete Bundle_CategoryWhereUniqueInput | Bundle_CategoryWhereUniqueInput[] No
connect Bundle_CategoryWhereUniqueInput | Bundle_CategoryWhereUniqueInput[] No
update Bundle_CategoryUpdateWithWhereUniqueWithoutCategoryInput | Bundle_CategoryUpdateWithWhereUniqueWithoutCategoryInput[] No
updateMany Bundle_CategoryUpdateManyWithWhereWithoutCategoryInput | Bundle_CategoryUpdateManyWithWhereWithoutCategoryInput[] No
deleteMany Bundle_CategoryScalarWhereInput | Bundle_CategoryScalarWhereInput[] No

ElementCreateNestedOneWithoutCategoriesInput

Name Type Nullable
create ElementCreateWithoutCategoriesInput | ElementUncheckedCreateWithoutCategoriesInput No
connectOrCreate ElementCreateOrConnectWithoutCategoriesInput No
connect ElementWhereUniqueInput No

CategoryCreateNestedOneWithoutElement_categoriesInput

Name Type Nullable
create CategoryCreateWithoutElement_categoriesInput | CategoryUncheckedCreateWithoutElement_categoriesInput No
connectOrCreate CategoryCreateOrConnectWithoutElement_categoriesInput No
connect CategoryWhereUniqueInput No

ElementUpdateOneWithoutCategoriesNestedInput

Name Type Nullable
create ElementCreateWithoutCategoriesInput | ElementUncheckedCreateWithoutCategoriesInput No
connectOrCreate ElementCreateOrConnectWithoutCategoriesInput No
upsert ElementUpsertWithoutCategoriesInput No
disconnect Boolean No
delete Boolean No
connect ElementWhereUniqueInput No
update ElementUpdateWithoutCategoriesInput | ElementUncheckedUpdateWithoutCategoriesInput No


BundleCreateNestedOneWithoutCategoriesInput

Name Type Nullable
create BundleCreateWithoutCategoriesInput | BundleUncheckedCreateWithoutCategoriesInput No
connectOrCreate BundleCreateOrConnectWithoutCategoriesInput No
connect BundleWhereUniqueInput No

CategoryCreateNestedOneWithoutBundle_categoriesInput

Name Type Nullable
create CategoryCreateWithoutBundle_categoriesInput | CategoryUncheckedCreateWithoutBundle_categoriesInput No
connectOrCreate CategoryCreateOrConnectWithoutBundle_categoriesInput No
connect CategoryWhereUniqueInput No

BundleUpdateOneWithoutCategoriesNestedInput

Name Type Nullable
create BundleCreateWithoutCategoriesInput | BundleUncheckedCreateWithoutCategoriesInput No
connectOrCreate BundleCreateOrConnectWithoutCategoriesInput No
upsert BundleUpsertWithoutCategoriesInput No
disconnect Boolean No
delete Boolean No
connect BundleWhereUniqueInput No
update BundleUpdateWithoutCategoriesInput | BundleUncheckedUpdateWithoutCategoriesInput No


UserCreateNestedOneWithoutTagsInput

Name Type Nullable
create UserCreateWithoutTagsInput | UserUncheckedCreateWithoutTagsInput No
connectOrCreate UserCreateOrConnectWithoutTagsInput No
connect UserWhereUniqueInput No



UserUpdateOneWithoutTagsNestedInput

Name Type Nullable
create UserCreateWithoutTagsInput | UserUncheckedCreateWithoutTagsInput No
connectOrCreate UserCreateOrConnectWithoutTagsInput No
upsert UserUpsertWithoutTagsInput No
disconnect Boolean No
delete Boolean No
connect UserWhereUniqueInput No
update UserUpdateWithoutTagsInput | UserUncheckedUpdateWithoutTagsInput No

Element_TagUpdateManyWithoutTagNestedInput

Name Type Nullable
create Element_TagCreateWithoutTagInput | Element_TagCreateWithoutTagInput[] | Element_TagUncheckedCreateWithoutTagInput | Element_TagUncheckedCreateWithoutTagInput[] No
connectOrCreate Element_TagCreateOrConnectWithoutTagInput | Element_TagCreateOrConnectWithoutTagInput[] No
upsert Element_TagUpsertWithWhereUniqueWithoutTagInput | Element_TagUpsertWithWhereUniqueWithoutTagInput[] No
createMany Element_TagCreateManyTagInputEnvelope No
set Element_TagWhereUniqueInput | Element_TagWhereUniqueInput[] No
disconnect Element_TagWhereUniqueInput | Element_TagWhereUniqueInput[] No
delete Element_TagWhereUniqueInput | Element_TagWhereUniqueInput[] No
connect Element_TagWhereUniqueInput | Element_TagWhereUniqueInput[] No
update Element_TagUpdateWithWhereUniqueWithoutTagInput | Element_TagUpdateWithWhereUniqueWithoutTagInput[] No
updateMany Element_TagUpdateManyWithWhereWithoutTagInput | Element_TagUpdateManyWithWhereWithoutTagInput[] No
deleteMany Element_TagScalarWhereInput | Element_TagScalarWhereInput[] No

Element_TagUncheckedUpdateManyWithoutTagNestedInput

Name Type Nullable
create Element_TagCreateWithoutTagInput | Element_TagCreateWithoutTagInput[] | Element_TagUncheckedCreateWithoutTagInput | Element_TagUncheckedCreateWithoutTagInput[] No
connectOrCreate Element_TagCreateOrConnectWithoutTagInput | Element_TagCreateOrConnectWithoutTagInput[] No
upsert Element_TagUpsertWithWhereUniqueWithoutTagInput | Element_TagUpsertWithWhereUniqueWithoutTagInput[] No
createMany Element_TagCreateManyTagInputEnvelope No
set Element_TagWhereUniqueInput | Element_TagWhereUniqueInput[] No
disconnect Element_TagWhereUniqueInput | Element_TagWhereUniqueInput[] No
delete Element_TagWhereUniqueInput | Element_TagWhereUniqueInput[] No
connect Element_TagWhereUniqueInput | Element_TagWhereUniqueInput[] No
update Element_TagUpdateWithWhereUniqueWithoutTagInput | Element_TagUpdateWithWhereUniqueWithoutTagInput[] No
updateMany Element_TagUpdateManyWithWhereWithoutTagInput | Element_TagUpdateManyWithWhereWithoutTagInput[] No
deleteMany Element_TagScalarWhereInput | Element_TagScalarWhereInput[] No

TagCreateNestedOneWithoutElementsInput

Name Type Nullable
create TagCreateWithoutElementsInput | TagUncheckedCreateWithoutElementsInput No
connectOrCreate TagCreateOrConnectWithoutElementsInput No
connect TagWhereUniqueInput No

ElementCreateNestedOneWithoutTagsInput

Name Type Nullable
create ElementCreateWithoutTagsInput | ElementUncheckedCreateWithoutTagsInput No
connectOrCreate ElementCreateOrConnectWithoutTagsInput No
connect ElementWhereUniqueInput No

TagUpdateOneWithoutElementsNestedInput

Name Type Nullable
create TagCreateWithoutElementsInput | TagUncheckedCreateWithoutElementsInput No
connectOrCreate TagCreateOrConnectWithoutElementsInput No
upsert TagUpsertWithoutElementsInput No
disconnect Boolean No
delete Boolean No
connect TagWhereUniqueInput No
update TagUpdateWithoutElementsInput | TagUncheckedUpdateWithoutElementsInput No

ElementUpdateOneWithoutTagsNestedInput

Name Type Nullable
create ElementCreateWithoutTagsInput | ElementUncheckedCreateWithoutTagsInput No
connectOrCreate ElementCreateOrConnectWithoutTagsInput No
upsert ElementUpsertWithoutTagsInput No
disconnect Boolean No
delete Boolean No
connect ElementWhereUniqueInput No
update ElementUpdateWithoutTagsInput | ElementUncheckedUpdateWithoutTagsInput No

BoolFieldUpdateOperationsInput

Name Type Nullable
set Boolean No

ShopCreateNestedOneWithoutOrdersInput

Name Type Nullable
create ShopCreateWithoutOrdersInput | ShopUncheckedCreateWithoutOrdersInput No
connectOrCreate ShopCreateOrConnectWithoutOrdersInput No
connect ShopWhereUniqueInput No

CouponCreateNestedOneWithoutOrdersInput

Name Type Nullable
create CouponCreateWithoutOrdersInput | CouponUncheckedCreateWithoutOrdersInput No
connectOrCreate CouponCreateOrConnectWithoutOrdersInput No
connect CouponWhereUniqueInput No





EnumOrderStatusFieldUpdateOperationsInput

Name Type Nullable
set OrderStatus No

ShopUpdateOneWithoutOrdersNestedInput

Name Type Nullable
create ShopCreateWithoutOrdersInput | ShopUncheckedCreateWithoutOrdersInput No
connectOrCreate ShopCreateOrConnectWithoutOrdersInput No
upsert ShopUpsertWithoutOrdersInput No
disconnect Boolean No
delete Boolean No
connect ShopWhereUniqueInput No
update ShopUpdateWithoutOrdersInput | ShopUncheckedUpdateWithoutOrdersInput No

CouponUpdateOneWithoutOrdersNestedInput

Name Type Nullable
create CouponCreateWithoutOrdersInput | CouponUncheckedCreateWithoutOrdersInput No
connectOrCreate CouponCreateOrConnectWithoutOrdersInput No
upsert CouponUpsertWithoutOrdersInput No
disconnect Boolean No
delete Boolean No
connect CouponWhereUniqueInput No
update CouponUpdateWithoutOrdersInput | CouponUncheckedUpdateWithoutOrdersInput No

Order_ItemUpdateManyWithoutOrderNestedInput

Name Type Nullable
create Order_ItemCreateWithoutOrderInput | Order_ItemCreateWithoutOrderInput[] | Order_ItemUncheckedCreateWithoutOrderInput | Order_ItemUncheckedCreateWithoutOrderInput[] No
connectOrCreate Order_ItemCreateOrConnectWithoutOrderInput | Order_ItemCreateOrConnectWithoutOrderInput[] No
upsert Order_ItemUpsertWithWhereUniqueWithoutOrderInput | Order_ItemUpsertWithWhereUniqueWithoutOrderInput[] No
createMany Order_ItemCreateManyOrderInputEnvelope No
set Order_ItemWhereUniqueInput | Order_ItemWhereUniqueInput[] No
disconnect Order_ItemWhereUniqueInput | Order_ItemWhereUniqueInput[] No
delete Order_ItemWhereUniqueInput | Order_ItemWhereUniqueInput[] No
connect Order_ItemWhereUniqueInput | Order_ItemWhereUniqueInput[] No
update Order_ItemUpdateWithWhereUniqueWithoutOrderInput | Order_ItemUpdateWithWhereUniqueWithoutOrderInput[] No
updateMany Order_ItemUpdateManyWithWhereWithoutOrderInput | Order_ItemUpdateManyWithWhereWithoutOrderInput[] No
deleteMany Order_ItemScalarWhereInput | Order_ItemScalarWhereInput[] No

Affiliator_CommissionUpdateManyWithoutOrderNestedInput

Name Type Nullable
create Affiliator_CommissionCreateWithoutOrderInput | Affiliator_CommissionCreateWithoutOrderInput[] | Affiliator_CommissionUncheckedCreateWithoutOrderInput | Affiliator_CommissionUncheckedCreateWithoutOrderInput[] No
connectOrCreate Affiliator_CommissionCreateOrConnectWithoutOrderInput | Affiliator_CommissionCreateOrConnectWithoutOrderInput[] No
upsert Affiliator_CommissionUpsertWithWhereUniqueWithoutOrderInput | Affiliator_CommissionUpsertWithWhereUniqueWithoutOrderInput[] No
createMany Affiliator_CommissionCreateManyOrderInputEnvelope No
set Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
disconnect Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
delete Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
connect Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
update Affiliator_CommissionUpdateWithWhereUniqueWithoutOrderInput | Affiliator_CommissionUpdateWithWhereUniqueWithoutOrderInput[] No
updateMany Affiliator_CommissionUpdateManyWithWhereWithoutOrderInput | Affiliator_CommissionUpdateManyWithWhereWithoutOrderInput[] No
deleteMany Affiliator_CommissionScalarWhereInput | Affiliator_CommissionScalarWhereInput[] No

Order_ItemUncheckedUpdateManyWithoutOrderNestedInput

Name Type Nullable
create Order_ItemCreateWithoutOrderInput | Order_ItemCreateWithoutOrderInput[] | Order_ItemUncheckedCreateWithoutOrderInput | Order_ItemUncheckedCreateWithoutOrderInput[] No
connectOrCreate Order_ItemCreateOrConnectWithoutOrderInput | Order_ItemCreateOrConnectWithoutOrderInput[] No
upsert Order_ItemUpsertWithWhereUniqueWithoutOrderInput | Order_ItemUpsertWithWhereUniqueWithoutOrderInput[] No
createMany Order_ItemCreateManyOrderInputEnvelope No
set Order_ItemWhereUniqueInput | Order_ItemWhereUniqueInput[] No
disconnect Order_ItemWhereUniqueInput | Order_ItemWhereUniqueInput[] No
delete Order_ItemWhereUniqueInput | Order_ItemWhereUniqueInput[] No
connect Order_ItemWhereUniqueInput | Order_ItemWhereUniqueInput[] No
update Order_ItemUpdateWithWhereUniqueWithoutOrderInput | Order_ItemUpdateWithWhereUniqueWithoutOrderInput[] No
updateMany Order_ItemUpdateManyWithWhereWithoutOrderInput | Order_ItemUpdateManyWithWhereWithoutOrderInput[] No
deleteMany Order_ItemScalarWhereInput | Order_ItemScalarWhereInput[] No

Affiliator_CommissionUncheckedUpdateManyWithoutOrderNestedInput

Name Type Nullable
create Affiliator_CommissionCreateWithoutOrderInput | Affiliator_CommissionCreateWithoutOrderInput[] | Affiliator_CommissionUncheckedCreateWithoutOrderInput | Affiliator_CommissionUncheckedCreateWithoutOrderInput[] No
connectOrCreate Affiliator_CommissionCreateOrConnectWithoutOrderInput | Affiliator_CommissionCreateOrConnectWithoutOrderInput[] No
upsert Affiliator_CommissionUpsertWithWhereUniqueWithoutOrderInput | Affiliator_CommissionUpsertWithWhereUniqueWithoutOrderInput[] No
createMany Affiliator_CommissionCreateManyOrderInputEnvelope No
set Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
disconnect Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
delete Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
connect Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
update Affiliator_CommissionUpdateWithWhereUniqueWithoutOrderInput | Affiliator_CommissionUpdateWithWhereUniqueWithoutOrderInput[] No
updateMany Affiliator_CommissionUpdateManyWithWhereWithoutOrderInput | Affiliator_CommissionUpdateManyWithWhereWithoutOrderInput[] No
deleteMany Affiliator_CommissionScalarWhereInput | Affiliator_CommissionScalarWhereInput[] No

OrderCreateNestedOneWithoutOrder_itemsInput

Name Type Nullable
create OrderCreateWithoutOrder_itemsInput | OrderUncheckedCreateWithoutOrder_itemsInput No
connectOrCreate OrderCreateOrConnectWithoutOrder_itemsInput No
connect OrderWhereUniqueInput No

OrderUpdateOneWithoutOrder_itemsNestedInput

Name Type Nullable
create OrderCreateWithoutOrder_itemsInput | OrderUncheckedCreateWithoutOrder_itemsInput No
connectOrCreate OrderCreateOrConnectWithoutOrder_itemsInput No
upsert OrderUpsertWithoutOrder_itemsInput No
disconnect Boolean No
delete Boolean No
connect OrderWhereUniqueInput No
update OrderUpdateWithoutOrder_itemsInput | OrderUncheckedUpdateWithoutOrder_itemsInput No

AffiliatorCreateNestedOneWithoutCouponsInput

Name Type Nullable
create AffiliatorCreateWithoutCouponsInput | AffiliatorUncheckedCreateWithoutCouponsInput No
connectOrCreate AffiliatorCreateOrConnectWithoutCouponsInput No
connect AffiliatorWhereUniqueInput No

UserCreateNestedOneWithoutCouponsInput

Name Type Nullable
create UserCreateWithoutCouponsInput | UserUncheckedCreateWithoutCouponsInput No
connectOrCreate UserCreateOrConnectWithoutCouponsInput No
connect UserWhereUniqueInput No





EnumCouponStatusFieldUpdateOperationsInput

Name Type Nullable
set CouponStatus No

AffiliatorUpdateOneWithoutCouponsNestedInput

Name Type Nullable
create AffiliatorCreateWithoutCouponsInput | AffiliatorUncheckedCreateWithoutCouponsInput No
connectOrCreate AffiliatorCreateOrConnectWithoutCouponsInput No
upsert AffiliatorUpsertWithoutCouponsInput No
disconnect Boolean No
delete Boolean No
connect AffiliatorWhereUniqueInput No
update AffiliatorUpdateWithoutCouponsInput | AffiliatorUncheckedUpdateWithoutCouponsInput No

UserUpdateOneWithoutCouponsNestedInput

Name Type Nullable
create UserCreateWithoutCouponsInput | UserUncheckedCreateWithoutCouponsInput No
connectOrCreate UserCreateOrConnectWithoutCouponsInput No
upsert UserUpsertWithoutCouponsInput No
disconnect Boolean No
delete Boolean No
connect UserWhereUniqueInput No
update UserUpdateWithoutCouponsInput | UserUncheckedUpdateWithoutCouponsInput No

OrderUpdateManyWithoutCouponNestedInput

Name Type Nullable
create OrderCreateWithoutCouponInput | OrderCreateWithoutCouponInput[] | OrderUncheckedCreateWithoutCouponInput | OrderUncheckedCreateWithoutCouponInput[] No
connectOrCreate OrderCreateOrConnectWithoutCouponInput | OrderCreateOrConnectWithoutCouponInput[] No
upsert OrderUpsertWithWhereUniqueWithoutCouponInput | OrderUpsertWithWhereUniqueWithoutCouponInput[] No
createMany OrderCreateManyCouponInputEnvelope No
set OrderWhereUniqueInput | OrderWhereUniqueInput[] No
disconnect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
delete OrderWhereUniqueInput | OrderWhereUniqueInput[] No
connect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
update OrderUpdateWithWhereUniqueWithoutCouponInput | OrderUpdateWithWhereUniqueWithoutCouponInput[] No
updateMany OrderUpdateManyWithWhereWithoutCouponInput | OrderUpdateManyWithWhereWithoutCouponInput[] No
deleteMany OrderScalarWhereInput | OrderScalarWhereInput[] No

Affiliator_CommissionUpdateManyWithoutCouponNestedInput

Name Type Nullable
create Affiliator_CommissionCreateWithoutCouponInput | Affiliator_CommissionCreateWithoutCouponInput[] | Affiliator_CommissionUncheckedCreateWithoutCouponInput | Affiliator_CommissionUncheckedCreateWithoutCouponInput[] No
connectOrCreate Affiliator_CommissionCreateOrConnectWithoutCouponInput | Affiliator_CommissionCreateOrConnectWithoutCouponInput[] No
upsert Affiliator_CommissionUpsertWithWhereUniqueWithoutCouponInput | Affiliator_CommissionUpsertWithWhereUniqueWithoutCouponInput[] No
createMany Affiliator_CommissionCreateManyCouponInputEnvelope No
set Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
disconnect Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
delete Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
connect Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
update Affiliator_CommissionUpdateWithWhereUniqueWithoutCouponInput | Affiliator_CommissionUpdateWithWhereUniqueWithoutCouponInput[] No
updateMany Affiliator_CommissionUpdateManyWithWhereWithoutCouponInput | Affiliator_CommissionUpdateManyWithWhereWithoutCouponInput[] No
deleteMany Affiliator_CommissionScalarWhereInput | Affiliator_CommissionScalarWhereInput[] No

OrderUncheckedUpdateManyWithoutCouponNestedInput

Name Type Nullable
create OrderCreateWithoutCouponInput | OrderCreateWithoutCouponInput[] | OrderUncheckedCreateWithoutCouponInput | OrderUncheckedCreateWithoutCouponInput[] No
connectOrCreate OrderCreateOrConnectWithoutCouponInput | OrderCreateOrConnectWithoutCouponInput[] No
upsert OrderUpsertWithWhereUniqueWithoutCouponInput | OrderUpsertWithWhereUniqueWithoutCouponInput[] No
createMany OrderCreateManyCouponInputEnvelope No
set OrderWhereUniqueInput | OrderWhereUniqueInput[] No
disconnect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
delete OrderWhereUniqueInput | OrderWhereUniqueInput[] No
connect OrderWhereUniqueInput | OrderWhereUniqueInput[] No
update OrderUpdateWithWhereUniqueWithoutCouponInput | OrderUpdateWithWhereUniqueWithoutCouponInput[] No
updateMany OrderUpdateManyWithWhereWithoutCouponInput | OrderUpdateManyWithWhereWithoutCouponInput[] No
deleteMany OrderScalarWhereInput | OrderScalarWhereInput[] No

Affiliator_CommissionUncheckedUpdateManyWithoutCouponNestedInput

Name Type Nullable
create Affiliator_CommissionCreateWithoutCouponInput | Affiliator_CommissionCreateWithoutCouponInput[] | Affiliator_CommissionUncheckedCreateWithoutCouponInput | Affiliator_CommissionUncheckedCreateWithoutCouponInput[] No
connectOrCreate Affiliator_CommissionCreateOrConnectWithoutCouponInput | Affiliator_CommissionCreateOrConnectWithoutCouponInput[] No
upsert Affiliator_CommissionUpsertWithWhereUniqueWithoutCouponInput | Affiliator_CommissionUpsertWithWhereUniqueWithoutCouponInput[] No
createMany Affiliator_CommissionCreateManyCouponInputEnvelope No
set Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
disconnect Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
delete Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
connect Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
update Affiliator_CommissionUpdateWithWhereUniqueWithoutCouponInput | Affiliator_CommissionUpdateWithWhereUniqueWithoutCouponInput[] No
updateMany Affiliator_CommissionUpdateManyWithWhereWithoutCouponInput | Affiliator_CommissionUpdateManyWithWhereWithoutCouponInput[] No
deleteMany Affiliator_CommissionScalarWhereInput | Affiliator_CommissionScalarWhereInput[] No

UserCreateNestedOneWithoutAffiliatorsInput

Name Type Nullable
create UserCreateWithoutAffiliatorsInput | UserUncheckedCreateWithoutAffiliatorsInput No
connectOrCreate UserCreateOrConnectWithoutAffiliatorsInput No
connect UserWhereUniqueInput No







EnumAffiliatorTypeFieldUpdateOperationsInput

Name Type Nullable
set AffiliatorType No

EnumAffiliatorStatusFieldUpdateOperationsInput

Name Type Nullable
set AffiliatorStatus No

UserUpdateOneWithoutAffiliatorsNestedInput

Name Type Nullable
create UserCreateWithoutAffiliatorsInput | UserUncheckedCreateWithoutAffiliatorsInput No
connectOrCreate UserCreateOrConnectWithoutAffiliatorsInput No
upsert UserUpsertWithoutAffiliatorsInput No
disconnect Boolean No
delete Boolean No
connect UserWhereUniqueInput No
update UserUpdateWithoutAffiliatorsInput | UserUncheckedUpdateWithoutAffiliatorsInput No

Affiliator_Withdraw_RequestUpdateManyWithoutAffiliatorNestedInput

Name Type Nullable
create Affiliator_Withdraw_RequestCreateWithoutAffiliatorInput | Affiliator_Withdraw_RequestCreateWithoutAffiliatorInput[] | Affiliator_Withdraw_RequestUncheckedCreateWithoutAffiliatorInput | Affiliator_Withdraw_RequestUncheckedCreateWithoutAffiliatorInput[] No
connectOrCreate Affiliator_Withdraw_RequestCreateOrConnectWithoutAffiliatorInput | Affiliator_Withdraw_RequestCreateOrConnectWithoutAffiliatorInput[] No
upsert Affiliator_Withdraw_RequestUpsertWithWhereUniqueWithoutAffiliatorInput | Affiliator_Withdraw_RequestUpsertWithWhereUniqueWithoutAffiliatorInput[] No
createMany Affiliator_Withdraw_RequestCreateManyAffiliatorInputEnvelope No
set Affiliator_Withdraw_RequestWhereUniqueInput | Affiliator_Withdraw_RequestWhereUniqueInput[] No
disconnect Affiliator_Withdraw_RequestWhereUniqueInput | Affiliator_Withdraw_RequestWhereUniqueInput[] No
delete Affiliator_Withdraw_RequestWhereUniqueInput | Affiliator_Withdraw_RequestWhereUniqueInput[] No
connect Affiliator_Withdraw_RequestWhereUniqueInput | Affiliator_Withdraw_RequestWhereUniqueInput[] No
update Affiliator_Withdraw_RequestUpdateWithWhereUniqueWithoutAffiliatorInput | Affiliator_Withdraw_RequestUpdateWithWhereUniqueWithoutAffiliatorInput[] No
updateMany Affiliator_Withdraw_RequestUpdateManyWithWhereWithoutAffiliatorInput | Affiliator_Withdraw_RequestUpdateManyWithWhereWithoutAffiliatorInput[] No
deleteMany Affiliator_Withdraw_RequestScalarWhereInput | Affiliator_Withdraw_RequestScalarWhereInput[] No

Affiliator_CommissionUpdateManyWithoutAffiliatorNestedInput

Name Type Nullable
create Affiliator_CommissionCreateWithoutAffiliatorInput | Affiliator_CommissionCreateWithoutAffiliatorInput[] | Affiliator_CommissionUncheckedCreateWithoutAffiliatorInput | Affiliator_CommissionUncheckedCreateWithoutAffiliatorInput[] No
connectOrCreate Affiliator_CommissionCreateOrConnectWithoutAffiliatorInput | Affiliator_CommissionCreateOrConnectWithoutAffiliatorInput[] No
upsert Affiliator_CommissionUpsertWithWhereUniqueWithoutAffiliatorInput | Affiliator_CommissionUpsertWithWhereUniqueWithoutAffiliatorInput[] No
createMany Affiliator_CommissionCreateManyAffiliatorInputEnvelope No
set Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
disconnect Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
delete Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
connect Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
update Affiliator_CommissionUpdateWithWhereUniqueWithoutAffiliatorInput | Affiliator_CommissionUpdateWithWhereUniqueWithoutAffiliatorInput[] No
updateMany Affiliator_CommissionUpdateManyWithWhereWithoutAffiliatorInput | Affiliator_CommissionUpdateManyWithWhereWithoutAffiliatorInput[] No
deleteMany Affiliator_CommissionScalarWhereInput | Affiliator_CommissionScalarWhereInput[] No

CouponUpdateManyWithoutAffiliatorNestedInput

Name Type Nullable
create CouponCreateWithoutAffiliatorInput | CouponCreateWithoutAffiliatorInput[] | CouponUncheckedCreateWithoutAffiliatorInput | CouponUncheckedCreateWithoutAffiliatorInput[] No
connectOrCreate CouponCreateOrConnectWithoutAffiliatorInput | CouponCreateOrConnectWithoutAffiliatorInput[] No
upsert CouponUpsertWithWhereUniqueWithoutAffiliatorInput | CouponUpsertWithWhereUniqueWithoutAffiliatorInput[] No
createMany CouponCreateManyAffiliatorInputEnvelope No
set CouponWhereUniqueInput | CouponWhereUniqueInput[] No
disconnect CouponWhereUniqueInput | CouponWhereUniqueInput[] No
delete CouponWhereUniqueInput | CouponWhereUniqueInput[] No
connect CouponWhereUniqueInput | CouponWhereUniqueInput[] No
update CouponUpdateWithWhereUniqueWithoutAffiliatorInput | CouponUpdateWithWhereUniqueWithoutAffiliatorInput[] No
updateMany CouponUpdateManyWithWhereWithoutAffiliatorInput | CouponUpdateManyWithWhereWithoutAffiliatorInput[] No
deleteMany CouponScalarWhereInput | CouponScalarWhereInput[] No

Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutAffiliatorNestedInput

Name Type Nullable
create Affiliator_Withdraw_RequestCreateWithoutAffiliatorInput | Affiliator_Withdraw_RequestCreateWithoutAffiliatorInput[] | Affiliator_Withdraw_RequestUncheckedCreateWithoutAffiliatorInput | Affiliator_Withdraw_RequestUncheckedCreateWithoutAffiliatorInput[] No
connectOrCreate Affiliator_Withdraw_RequestCreateOrConnectWithoutAffiliatorInput | Affiliator_Withdraw_RequestCreateOrConnectWithoutAffiliatorInput[] No
upsert Affiliator_Withdraw_RequestUpsertWithWhereUniqueWithoutAffiliatorInput | Affiliator_Withdraw_RequestUpsertWithWhereUniqueWithoutAffiliatorInput[] No
createMany Affiliator_Withdraw_RequestCreateManyAffiliatorInputEnvelope No
set Affiliator_Withdraw_RequestWhereUniqueInput | Affiliator_Withdraw_RequestWhereUniqueInput[] No
disconnect Affiliator_Withdraw_RequestWhereUniqueInput | Affiliator_Withdraw_RequestWhereUniqueInput[] No
delete Affiliator_Withdraw_RequestWhereUniqueInput | Affiliator_Withdraw_RequestWhereUniqueInput[] No
connect Affiliator_Withdraw_RequestWhereUniqueInput | Affiliator_Withdraw_RequestWhereUniqueInput[] No
update Affiliator_Withdraw_RequestUpdateWithWhereUniqueWithoutAffiliatorInput | Affiliator_Withdraw_RequestUpdateWithWhereUniqueWithoutAffiliatorInput[] No
updateMany Affiliator_Withdraw_RequestUpdateManyWithWhereWithoutAffiliatorInput | Affiliator_Withdraw_RequestUpdateManyWithWhereWithoutAffiliatorInput[] No
deleteMany Affiliator_Withdraw_RequestScalarWhereInput | Affiliator_Withdraw_RequestScalarWhereInput[] No

Affiliator_CommissionUncheckedUpdateManyWithoutAffiliatorNestedInput

Name Type Nullable
create Affiliator_CommissionCreateWithoutAffiliatorInput | Affiliator_CommissionCreateWithoutAffiliatorInput[] | Affiliator_CommissionUncheckedCreateWithoutAffiliatorInput | Affiliator_CommissionUncheckedCreateWithoutAffiliatorInput[] No
connectOrCreate Affiliator_CommissionCreateOrConnectWithoutAffiliatorInput | Affiliator_CommissionCreateOrConnectWithoutAffiliatorInput[] No
upsert Affiliator_CommissionUpsertWithWhereUniqueWithoutAffiliatorInput | Affiliator_CommissionUpsertWithWhereUniqueWithoutAffiliatorInput[] No
createMany Affiliator_CommissionCreateManyAffiliatorInputEnvelope No
set Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
disconnect Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
delete Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
connect Affiliator_CommissionWhereUniqueInput | Affiliator_CommissionWhereUniqueInput[] No
update Affiliator_CommissionUpdateWithWhereUniqueWithoutAffiliatorInput | Affiliator_CommissionUpdateWithWhereUniqueWithoutAffiliatorInput[] No
updateMany Affiliator_CommissionUpdateManyWithWhereWithoutAffiliatorInput | Affiliator_CommissionUpdateManyWithWhereWithoutAffiliatorInput[] No
deleteMany Affiliator_CommissionScalarWhereInput | Affiliator_CommissionScalarWhereInput[] No

CouponUncheckedUpdateManyWithoutAffiliatorNestedInput

Name Type Nullable
create CouponCreateWithoutAffiliatorInput | CouponCreateWithoutAffiliatorInput[] | CouponUncheckedCreateWithoutAffiliatorInput | CouponUncheckedCreateWithoutAffiliatorInput[] No
connectOrCreate CouponCreateOrConnectWithoutAffiliatorInput | CouponCreateOrConnectWithoutAffiliatorInput[] No
upsert CouponUpsertWithWhereUniqueWithoutAffiliatorInput | CouponUpsertWithWhereUniqueWithoutAffiliatorInput[] No
createMany CouponCreateManyAffiliatorInputEnvelope No
set CouponWhereUniqueInput | CouponWhereUniqueInput[] No
disconnect CouponWhereUniqueInput | CouponWhereUniqueInput[] No
delete CouponWhereUniqueInput | CouponWhereUniqueInput[] No
connect CouponWhereUniqueInput | CouponWhereUniqueInput[] No
update CouponUpdateWithWhereUniqueWithoutAffiliatorInput | CouponUpdateWithWhereUniqueWithoutAffiliatorInput[] No
updateMany CouponUpdateManyWithWhereWithoutAffiliatorInput | CouponUpdateManyWithWhereWithoutAffiliatorInput[] No
deleteMany CouponScalarWhereInput | CouponScalarWhereInput[] No


UserCreateNestedOneWithoutAffiliator_commissionsInput

Name Type Nullable
create UserCreateWithoutAffiliator_commissionsInput | UserUncheckedCreateWithoutAffiliator_commissionsInput No
connectOrCreate UserCreateOrConnectWithoutAffiliator_commissionsInput No
connect UserWhereUniqueInput No

OrderCreateNestedOneWithoutAffiliator_commissionsInput

Name Type Nullable
create OrderCreateWithoutAffiliator_commissionsInput | OrderUncheckedCreateWithoutAffiliator_commissionsInput No
connectOrCreate OrderCreateOrConnectWithoutAffiliator_commissionsInput No
connect OrderWhereUniqueInput No

ShopCreateNestedOneWithoutAffiliator_commissionsInput

Name Type Nullable
create ShopCreateWithoutAffiliator_commissionsInput | ShopUncheckedCreateWithoutAffiliator_commissionsInput No
connectOrCreate ShopCreateOrConnectWithoutAffiliator_commissionsInput No
connect ShopWhereUniqueInput No

CouponCreateNestedOneWithoutAffiliator_commissionsInput

Name Type Nullable
create CouponCreateWithoutAffiliator_commissionsInput | CouponUncheckedCreateWithoutAffiliator_commissionsInput No
connectOrCreate CouponCreateOrConnectWithoutAffiliator_commissionsInput No
connect CouponWhereUniqueInput No

EnumDiscountTypeFieldUpdateOperationsInput

Name Type Nullable
set DiscountType No

EnumCommissionStatusFieldUpdateOperationsInput

Name Type Nullable
set CommissionStatus No








UserCreateNestedOneWithoutAffiliator_withdraw_requestsInput

Name Type Nullable
create UserCreateWithoutAffiliator_withdraw_requestsInput | UserUncheckedCreateWithoutAffiliator_withdraw_requestsInput No
connectOrCreate UserCreateOrConnectWithoutAffiliator_withdraw_requestsInput No
connect UserWhereUniqueInput No

EnumCommissionWithdrawStatusFieldUpdateOperationsInput

Name Type Nullable
set CommissionWithdrawStatus No

EnumPaymentMethodFieldUpdateOperationsInput

Name Type Nullable
set PaymentMethod No




UserCreateNestedOneWithoutUser_pament_methodsInput

Name Type Nullable
create UserCreateWithoutUser_pament_methodsInput | UserUncheckedCreateWithoutUser_pament_methodsInput No
connectOrCreate UserCreateOrConnectWithoutUser_pament_methodsInput No
connect UserWhereUniqueInput No




Affiliator_Withdraw_RequestUpdateManyWithoutPayment_method_detailNestedInput

Name Type Nullable
create Affiliator_Withdraw_RequestCreateWithoutPayment_method_detailInput | Affiliator_Withdraw_RequestCreateWithoutPayment_method_detailInput[] | Affiliator_Withdraw_RequestUncheckedCreateWithoutPayment_method_detailInput | Affiliator_Withdraw_RequestUncheckedCreateWithoutPayment_method_detailInput[] No
connectOrCreate Affiliator_Withdraw_RequestCreateOrConnectWithoutPayment_method_detailInput | Affiliator_Withdraw_RequestCreateOrConnectWithoutPayment_method_detailInput[] No
upsert Affiliator_Withdraw_RequestUpsertWithWhereUniqueWithoutPayment_method_detailInput | Affiliator_Withdraw_RequestUpsertWithWhereUniqueWithoutPayment_method_detailInput[] No
createMany Affiliator_Withdraw_RequestCreateManyPayment_method_detailInputEnvelope No
set Affiliator_Withdraw_RequestWhereUniqueInput | Affiliator_Withdraw_RequestWhereUniqueInput[] No
disconnect Affiliator_Withdraw_RequestWhereUniqueInput | Affiliator_Withdraw_RequestWhereUniqueInput[] No
delete Affiliator_Withdraw_RequestWhereUniqueInput | Affiliator_Withdraw_RequestWhereUniqueInput[] No
connect Affiliator_Withdraw_RequestWhereUniqueInput | Affiliator_Withdraw_RequestWhereUniqueInput[] No
update Affiliator_Withdraw_RequestUpdateWithWhereUniqueWithoutPayment_method_detailInput | Affiliator_Withdraw_RequestUpdateWithWhereUniqueWithoutPayment_method_detailInput[] No
updateMany Affiliator_Withdraw_RequestUpdateManyWithWhereWithoutPayment_method_detailInput | Affiliator_Withdraw_RequestUpdateManyWithWhereWithoutPayment_method_detailInput[] No
deleteMany Affiliator_Withdraw_RequestScalarWhereInput | Affiliator_Withdraw_RequestScalarWhereInput[] No

Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutPayment_method_detailNestedInput

Name Type Nullable
create Affiliator_Withdraw_RequestCreateWithoutPayment_method_detailInput | Affiliator_Withdraw_RequestCreateWithoutPayment_method_detailInput[] | Affiliator_Withdraw_RequestUncheckedCreateWithoutPayment_method_detailInput | Affiliator_Withdraw_RequestUncheckedCreateWithoutPayment_method_detailInput[] No
connectOrCreate Affiliator_Withdraw_RequestCreateOrConnectWithoutPayment_method_detailInput | Affiliator_Withdraw_RequestCreateOrConnectWithoutPayment_method_detailInput[] No
upsert Affiliator_Withdraw_RequestUpsertWithWhereUniqueWithoutPayment_method_detailInput | Affiliator_Withdraw_RequestUpsertWithWhereUniqueWithoutPayment_method_detailInput[] No
createMany Affiliator_Withdraw_RequestCreateManyPayment_method_detailInputEnvelope No
set Affiliator_Withdraw_RequestWhereUniqueInput | Affiliator_Withdraw_RequestWhereUniqueInput[] No
disconnect Affiliator_Withdraw_RequestWhereUniqueInput | Affiliator_Withdraw_RequestWhereUniqueInput[] No
delete Affiliator_Withdraw_RequestWhereUniqueInput | Affiliator_Withdraw_RequestWhereUniqueInput[] No
connect Affiliator_Withdraw_RequestWhereUniqueInput | Affiliator_Withdraw_RequestWhereUniqueInput[] No
update Affiliator_Withdraw_RequestUpdateWithWhereUniqueWithoutPayment_method_detailInput | Affiliator_Withdraw_RequestUpdateWithWhereUniqueWithoutPayment_method_detailInput[] No
updateMany Affiliator_Withdraw_RequestUpdateManyWithWhereWithoutPayment_method_detailInput | Affiliator_Withdraw_RequestUpdateManyWithWhereWithoutPayment_method_detailInput[] No
deleteMany Affiliator_Withdraw_RequestScalarWhereInput | Affiliator_Withdraw_RequestScalarWhereInput[] No

UserCreateNestedOneWithoutPricing_plansInput

Name Type Nullable
create UserCreateWithoutPricing_plansInput | UserUncheckedCreateWithoutPricing_plansInput No
connectOrCreate UserCreateOrConnectWithoutPricing_plansInput No
connect UserWhereUniqueInput No





EnumPricingPlanTypeFieldUpdateOperationsInput

Name Type Nullable
set PricingPlanType No

UserUpdateOneWithoutPricing_plansNestedInput

Name Type Nullable
create UserCreateWithoutPricing_plansInput | UserUncheckedCreateWithoutPricing_plansInput No
connectOrCreate UserCreateOrConnectWithoutPricing_plansInput No
upsert UserUpsertWithoutPricing_plansInput No
disconnect Boolean No
delete Boolean No
connect UserWhereUniqueInput No
update UserUpdateWithoutPricing_plansInput | UserUncheckedUpdateWithoutPricing_plansInput No

Shop_SubscriptionUpdateManyWithoutPlanNestedInput

Name Type Nullable
create Shop_SubscriptionCreateWithoutPlanInput | Shop_SubscriptionCreateWithoutPlanInput[] | Shop_SubscriptionUncheckedCreateWithoutPlanInput | Shop_SubscriptionUncheckedCreateWithoutPlanInput[] No
connectOrCreate Shop_SubscriptionCreateOrConnectWithoutPlanInput | Shop_SubscriptionCreateOrConnectWithoutPlanInput[] No
upsert Shop_SubscriptionUpsertWithWhereUniqueWithoutPlanInput | Shop_SubscriptionUpsertWithWhereUniqueWithoutPlanInput[] No
createMany Shop_SubscriptionCreateManyPlanInputEnvelope No
set Shop_SubscriptionWhereUniqueInput | Shop_SubscriptionWhereUniqueInput[] No
disconnect Shop_SubscriptionWhereUniqueInput | Shop_SubscriptionWhereUniqueInput[] No
delete Shop_SubscriptionWhereUniqueInput | Shop_SubscriptionWhereUniqueInput[] No
connect Shop_SubscriptionWhereUniqueInput | Shop_SubscriptionWhereUniqueInput[] No
update Shop_SubscriptionUpdateWithWhereUniqueWithoutPlanInput | Shop_SubscriptionUpdateWithWhereUniqueWithoutPlanInput[] No
updateMany Shop_SubscriptionUpdateManyWithWhereWithoutPlanInput | Shop_SubscriptionUpdateManyWithWhereWithoutPlanInput[] No
deleteMany Shop_SubscriptionScalarWhereInput | Shop_SubscriptionScalarWhereInput[] No

Pricing_Plan_FeatureUpdateManyWithoutPricing_planNestedInput

Name Type Nullable
create Pricing_Plan_FeatureCreateWithoutPricing_planInput | Pricing_Plan_FeatureCreateWithoutPricing_planInput[] | Pricing_Plan_FeatureUncheckedCreateWithoutPricing_planInput | Pricing_Plan_FeatureUncheckedCreateWithoutPricing_planInput[] No
connectOrCreate Pricing_Plan_FeatureCreateOrConnectWithoutPricing_planInput | Pricing_Plan_FeatureCreateOrConnectWithoutPricing_planInput[] No
upsert Pricing_Plan_FeatureUpsertWithWhereUniqueWithoutPricing_planInput | Pricing_Plan_FeatureUpsertWithWhereUniqueWithoutPricing_planInput[] No
createMany Pricing_Plan_FeatureCreateManyPricing_planInputEnvelope No
set Pricing_Plan_FeatureWhereUniqueInput | Pricing_Plan_FeatureWhereUniqueInput[] No
disconnect Pricing_Plan_FeatureWhereUniqueInput | Pricing_Plan_FeatureWhereUniqueInput[] No
delete Pricing_Plan_FeatureWhereUniqueInput | Pricing_Plan_FeatureWhereUniqueInput[] No
connect Pricing_Plan_FeatureWhereUniqueInput | Pricing_Plan_FeatureWhereUniqueInput[] No
update Pricing_Plan_FeatureUpdateWithWhereUniqueWithoutPricing_planInput | Pricing_Plan_FeatureUpdateWithWhereUniqueWithoutPricing_planInput[] No
updateMany Pricing_Plan_FeatureUpdateManyWithWhereWithoutPricing_planInput | Pricing_Plan_FeatureUpdateManyWithWhereWithoutPricing_planInput[] No
deleteMany Pricing_Plan_FeatureScalarWhereInput | Pricing_Plan_FeatureScalarWhereInput[] No

Shop_SubscriptionUncheckedUpdateManyWithoutPlanNestedInput

Name Type Nullable
create Shop_SubscriptionCreateWithoutPlanInput | Shop_SubscriptionCreateWithoutPlanInput[] | Shop_SubscriptionUncheckedCreateWithoutPlanInput | Shop_SubscriptionUncheckedCreateWithoutPlanInput[] No
connectOrCreate Shop_SubscriptionCreateOrConnectWithoutPlanInput | Shop_SubscriptionCreateOrConnectWithoutPlanInput[] No
upsert Shop_SubscriptionUpsertWithWhereUniqueWithoutPlanInput | Shop_SubscriptionUpsertWithWhereUniqueWithoutPlanInput[] No
createMany Shop_SubscriptionCreateManyPlanInputEnvelope No
set Shop_SubscriptionWhereUniqueInput | Shop_SubscriptionWhereUniqueInput[] No
disconnect Shop_SubscriptionWhereUniqueInput | Shop_SubscriptionWhereUniqueInput[] No
delete Shop_SubscriptionWhereUniqueInput | Shop_SubscriptionWhereUniqueInput[] No
connect Shop_SubscriptionWhereUniqueInput | Shop_SubscriptionWhereUniqueInput[] No
update Shop_SubscriptionUpdateWithWhereUniqueWithoutPlanInput | Shop_SubscriptionUpdateWithWhereUniqueWithoutPlanInput[] No
updateMany Shop_SubscriptionUpdateManyWithWhereWithoutPlanInput | Shop_SubscriptionUpdateManyWithWhereWithoutPlanInput[] No
deleteMany Shop_SubscriptionScalarWhereInput | Shop_SubscriptionScalarWhereInput[] No

Pricing_Plan_FeatureUncheckedUpdateManyWithoutPricing_planNestedInput

Name Type Nullable
create Pricing_Plan_FeatureCreateWithoutPricing_planInput | Pricing_Plan_FeatureCreateWithoutPricing_planInput[] | Pricing_Plan_FeatureUncheckedCreateWithoutPricing_planInput | Pricing_Plan_FeatureUncheckedCreateWithoutPricing_planInput[] No
connectOrCreate Pricing_Plan_FeatureCreateOrConnectWithoutPricing_planInput | Pricing_Plan_FeatureCreateOrConnectWithoutPricing_planInput[] No
upsert Pricing_Plan_FeatureUpsertWithWhereUniqueWithoutPricing_planInput | Pricing_Plan_FeatureUpsertWithWhereUniqueWithoutPricing_planInput[] No
createMany Pricing_Plan_FeatureCreateManyPricing_planInputEnvelope No
set Pricing_Plan_FeatureWhereUniqueInput | Pricing_Plan_FeatureWhereUniqueInput[] No
disconnect Pricing_Plan_FeatureWhereUniqueInput | Pricing_Plan_FeatureWhereUniqueInput[] No
delete Pricing_Plan_FeatureWhereUniqueInput | Pricing_Plan_FeatureWhereUniqueInput[] No
connect Pricing_Plan_FeatureWhereUniqueInput | Pricing_Plan_FeatureWhereUniqueInput[] No
update Pricing_Plan_FeatureUpdateWithWhereUniqueWithoutPricing_planInput | Pricing_Plan_FeatureUpdateWithWhereUniqueWithoutPricing_planInput[] No
updateMany Pricing_Plan_FeatureUpdateManyWithWhereWithoutPricing_planInput | Pricing_Plan_FeatureUpdateManyWithWhereWithoutPricing_planInput[] No
deleteMany Pricing_Plan_FeatureScalarWhereInput | Pricing_Plan_FeatureScalarWhereInput[] No



Pricing_PlanCreateNestedOneWithoutSubscriptionsInput

Name Type Nullable
create Pricing_PlanCreateWithoutSubscriptionsInput | Pricing_PlanUncheckedCreateWithoutSubscriptionsInput No
connectOrCreate Pricing_PlanCreateOrConnectWithoutSubscriptionsInput No
connect Pricing_PlanWhereUniqueInput No



EnumSubscriptionStatusFieldUpdateOperationsInput

Name Type Nullable
set SubscriptionStatus No

NullableEnumSubscriptionEndedTypeFieldUpdateOperationsInput

Name Type Nullable
set SubscriptionEndedType | Null Yes


ShopUpdateManyWithoutCurrent_subscriptionNestedInput

Name Type Nullable
create ShopCreateWithoutCurrent_subscriptionInput | ShopCreateWithoutCurrent_subscriptionInput[] | ShopUncheckedCreateWithoutCurrent_subscriptionInput | ShopUncheckedCreateWithoutCurrent_subscriptionInput[] No
connectOrCreate ShopCreateOrConnectWithoutCurrent_subscriptionInput | ShopCreateOrConnectWithoutCurrent_subscriptionInput[] No
upsert ShopUpsertWithWhereUniqueWithoutCurrent_subscriptionInput | ShopUpsertWithWhereUniqueWithoutCurrent_subscriptionInput[] No
createMany ShopCreateManyCurrent_subscriptionInputEnvelope No
set ShopWhereUniqueInput | ShopWhereUniqueInput[] No
disconnect ShopWhereUniqueInput | ShopWhereUniqueInput[] No
delete ShopWhereUniqueInput | ShopWhereUniqueInput[] No
connect ShopWhereUniqueInput | ShopWhereUniqueInput[] No
update ShopUpdateWithWhereUniqueWithoutCurrent_subscriptionInput | ShopUpdateWithWhereUniqueWithoutCurrent_subscriptionInput[] No
updateMany ShopUpdateManyWithWhereWithoutCurrent_subscriptionInput | ShopUpdateManyWithWhereWithoutCurrent_subscriptionInput[] No
deleteMany ShopScalarWhereInput | ShopScalarWhereInput[] No

ShopUncheckedUpdateManyWithoutCurrent_subscriptionNestedInput

Name Type Nullable
create ShopCreateWithoutCurrent_subscriptionInput | ShopCreateWithoutCurrent_subscriptionInput[] | ShopUncheckedCreateWithoutCurrent_subscriptionInput | ShopUncheckedCreateWithoutCurrent_subscriptionInput[] No
connectOrCreate ShopCreateOrConnectWithoutCurrent_subscriptionInput | ShopCreateOrConnectWithoutCurrent_subscriptionInput[] No
upsert ShopUpsertWithWhereUniqueWithoutCurrent_subscriptionInput | ShopUpsertWithWhereUniqueWithoutCurrent_subscriptionInput[] No
createMany ShopCreateManyCurrent_subscriptionInputEnvelope No
set ShopWhereUniqueInput | ShopWhereUniqueInput[] No
disconnect ShopWhereUniqueInput | ShopWhereUniqueInput[] No
delete ShopWhereUniqueInput | ShopWhereUniqueInput[] No
connect ShopWhereUniqueInput | ShopWhereUniqueInput[] No
update ShopUpdateWithWhereUniqueWithoutCurrent_subscriptionInput | ShopUpdateWithWhereUniqueWithoutCurrent_subscriptionInput[] No
updateMany ShopUpdateManyWithWhereWithoutCurrent_subscriptionInput | ShopUpdateManyWithWhereWithoutCurrent_subscriptionInput[] No
deleteMany ShopScalarWhereInput | ShopScalarWhereInput[] No

UserCreateNestedOneWithoutFaqsInput

Name Type Nullable
create UserCreateWithoutFaqsInput | UserUncheckedCreateWithoutFaqsInput No
connectOrCreate UserCreateOrConnectWithoutFaqsInput No
connect UserWhereUniqueInput No

Faq_CategoryCreateNestedOneWithoutFaqsInput

Name Type Nullable
create Faq_CategoryCreateWithoutFaqsInput | Faq_CategoryUncheckedCreateWithoutFaqsInput No
connectOrCreate Faq_CategoryCreateOrConnectWithoutFaqsInput No
connect Faq_CategoryWhereUniqueInput No

EnumFaqStatusFieldUpdateOperationsInput

Name Type Nullable
set FaqStatus No

UserUpdateOneWithoutFaqsNestedInput

Name Type Nullable
create UserCreateWithoutFaqsInput | UserUncheckedCreateWithoutFaqsInput No
connectOrCreate UserCreateOrConnectWithoutFaqsInput No
upsert UserUpsertWithoutFaqsInput No
disconnect Boolean No
delete Boolean No
connect UserWhereUniqueInput No
update UserUpdateWithoutFaqsInput | UserUncheckedUpdateWithoutFaqsInput No

Faq_CategoryUpdateOneWithoutFaqsNestedInput

Name Type Nullable
create Faq_CategoryCreateWithoutFaqsInput | Faq_CategoryUncheckedCreateWithoutFaqsInput No
connectOrCreate Faq_CategoryCreateOrConnectWithoutFaqsInput No
upsert Faq_CategoryUpsertWithoutFaqsInput No
disconnect Boolean No
delete Boolean No
connect Faq_CategoryWhereUniqueInput No
update Faq_CategoryUpdateWithoutFaqsInput | Faq_CategoryUncheckedUpdateWithoutFaqsInput No

UserCreateNestedOneWithoutFaq_categoriesInput

Name Type Nullable
create UserCreateWithoutFaq_categoriesInput | UserUncheckedCreateWithoutFaq_categoriesInput No
connectOrCreate UserCreateOrConnectWithoutFaq_categoriesInput No
connect UserWhereUniqueInput No



UserUpdateOneWithoutFaq_categoriesNestedInput

Name Type Nullable
create UserCreateWithoutFaq_categoriesInput | UserUncheckedCreateWithoutFaq_categoriesInput No
connectOrCreate UserCreateOrConnectWithoutFaq_categoriesInput No
upsert UserUpsertWithoutFaq_categoriesInput No
disconnect Boolean No
delete Boolean No
connect UserWhereUniqueInput No
update UserUpdateWithoutFaq_categoriesInput | UserUncheckedUpdateWithoutFaq_categoriesInput No

FaqUpdateManyWithoutCategoryNestedInput

Name Type Nullable
create FaqCreateWithoutCategoryInput | FaqCreateWithoutCategoryInput[] | FaqUncheckedCreateWithoutCategoryInput | FaqUncheckedCreateWithoutCategoryInput[] No
connectOrCreate FaqCreateOrConnectWithoutCategoryInput | FaqCreateOrConnectWithoutCategoryInput[] No
upsert FaqUpsertWithWhereUniqueWithoutCategoryInput | FaqUpsertWithWhereUniqueWithoutCategoryInput[] No
createMany FaqCreateManyCategoryInputEnvelope No
set FaqWhereUniqueInput | FaqWhereUniqueInput[] No
disconnect FaqWhereUniqueInput | FaqWhereUniqueInput[] No
delete FaqWhereUniqueInput | FaqWhereUniqueInput[] No
connect FaqWhereUniqueInput | FaqWhereUniqueInput[] No
update FaqUpdateWithWhereUniqueWithoutCategoryInput | FaqUpdateWithWhereUniqueWithoutCategoryInput[] No
updateMany FaqUpdateManyWithWhereWithoutCategoryInput | FaqUpdateManyWithWhereWithoutCategoryInput[] No
deleteMany FaqScalarWhereInput | FaqScalarWhereInput[] No

FaqUncheckedUpdateManyWithoutCategoryNestedInput

Name Type Nullable
create FaqCreateWithoutCategoryInput | FaqCreateWithoutCategoryInput[] | FaqUncheckedCreateWithoutCategoryInput | FaqUncheckedCreateWithoutCategoryInput[] No
connectOrCreate FaqCreateOrConnectWithoutCategoryInput | FaqCreateOrConnectWithoutCategoryInput[] No
upsert FaqUpsertWithWhereUniqueWithoutCategoryInput | FaqUpsertWithWhereUniqueWithoutCategoryInput[] No
createMany FaqCreateManyCategoryInputEnvelope No
set FaqWhereUniqueInput | FaqWhereUniqueInput[] No
disconnect FaqWhereUniqueInput | FaqWhereUniqueInput[] No
delete FaqWhereUniqueInput | FaqWhereUniqueInput[] No
connect FaqWhereUniqueInput | FaqWhereUniqueInput[] No
update FaqUpdateWithWhereUniqueWithoutCategoryInput | FaqUpdateWithWhereUniqueWithoutCategoryInput[] No
updateMany FaqUpdateManyWithWhereWithoutCategoryInput | FaqUpdateManyWithWhereWithoutCategoryInput[] No
deleteMany FaqScalarWhereInput | FaqScalarWhereInput[] No

EnumAttachmentTypeFieldUpdateOperationsInput

Name Type Nullable
set AttachmentType No

EnumAttachmentRefTypeFieldUpdateOperationsInput

Name Type Nullable
set AttachmentRefType No

ShopCreateNestedOneWithoutWishlisted_elementsInput

Name Type Nullable
create ShopCreateWithoutWishlisted_elementsInput | ShopUncheckedCreateWithoutWishlisted_elementsInput No
connectOrCreate ShopCreateOrConnectWithoutWishlisted_elementsInput No
connect ShopWhereUniqueInput No

ElementCreateNestedOneWithoutWishlisted_elementsInput

Name Type Nullable
create ElementCreateWithoutWishlisted_elementsInput | ElementUncheckedCreateWithoutWishlisted_elementsInput No
connectOrCreate ElementCreateOrConnectWithoutWishlisted_elementsInput No
connect ElementWhereUniqueInput No



ShopCreateNestedOneWithoutBookmarked_elementsInput

Name Type Nullable
create ShopCreateWithoutBookmarked_elementsInput | ShopUncheckedCreateWithoutBookmarked_elementsInput No
connectOrCreate ShopCreateOrConnectWithoutBookmarked_elementsInput No
connect ShopWhereUniqueInput No

ElementCreateNestedOneWithoutBookmarked_elementsInput

Name Type Nullable
create ElementCreateWithoutBookmarked_elementsInput | ElementUncheckedCreateWithoutBookmarked_elementsInput No
connectOrCreate ElementCreateOrConnectWithoutBookmarked_elementsInput No
connect ElementWhereUniqueInput No



ShopCreateNestedOneWithoutRecent_used_elementsInput

Name Type Nullable
create ShopCreateWithoutRecent_used_elementsInput | ShopUncheckedCreateWithoutRecent_used_elementsInput No
connectOrCreate ShopCreateOrConnectWithoutRecent_used_elementsInput No
connect ShopWhereUniqueInput No

ElementCreateNestedOneWithoutRecent_used_elementsInput

Name Type Nullable
create ElementCreateWithoutRecent_used_elementsInput | ElementUncheckedCreateWithoutRecent_used_elementsInput No
connectOrCreate ElementCreateOrConnectWithoutRecent_used_elementsInput No
connect ElementWhereUniqueInput No



UserCreateNestedOneWithoutSupport_ticketsInput

Name Type Nullable
create UserCreateWithoutSupport_ticketsInput | UserUncheckedCreateWithoutSupport_ticketsInput No
connectOrCreate UserCreateOrConnectWithoutSupport_ticketsInput No
connect UserWhereUniqueInput No



EnumSupportRefTypeFieldUpdateOperationsInput

Name Type Nullable
set SupportRefType No

EnumSupportCriteriaFieldUpdateOperationsInput

Name Type Nullable
set SupportCriteria No

NullableEnumSupportStatusFieldUpdateOperationsInput

Name Type Nullable
set SupportStatus | Null Yes

NullableEnumSupportLabelFieldUpdateOperationsInput

Name Type Nullable
set SupportLabel | Null Yes


Ticket_MessageUpdateManyWithoutSupport_ticketNestedInput

Name Type Nullable
create Ticket_MessageCreateWithoutSupport_ticketInput | Ticket_MessageCreateWithoutSupport_ticketInput[] | Ticket_MessageUncheckedCreateWithoutSupport_ticketInput | Ticket_MessageUncheckedCreateWithoutSupport_ticketInput[] No
connectOrCreate Ticket_MessageCreateOrConnectWithoutSupport_ticketInput | Ticket_MessageCreateOrConnectWithoutSupport_ticketInput[] No
upsert Ticket_MessageUpsertWithWhereUniqueWithoutSupport_ticketInput | Ticket_MessageUpsertWithWhereUniqueWithoutSupport_ticketInput[] No
createMany Ticket_MessageCreateManySupport_ticketInputEnvelope No
set Ticket_MessageWhereUniqueInput | Ticket_MessageWhereUniqueInput[] No
disconnect Ticket_MessageWhereUniqueInput | Ticket_MessageWhereUniqueInput[] No
delete Ticket_MessageWhereUniqueInput | Ticket_MessageWhereUniqueInput[] No
connect Ticket_MessageWhereUniqueInput | Ticket_MessageWhereUniqueInput[] No
update Ticket_MessageUpdateWithWhereUniqueWithoutSupport_ticketInput | Ticket_MessageUpdateWithWhereUniqueWithoutSupport_ticketInput[] No
updateMany Ticket_MessageUpdateManyWithWhereWithoutSupport_ticketInput | Ticket_MessageUpdateManyWithWhereWithoutSupport_ticketInput[] No
deleteMany Ticket_MessageScalarWhereInput | Ticket_MessageScalarWhereInput[] No

Ticket_MessageUncheckedUpdateManyWithoutSupport_ticketNestedInput

Name Type Nullable
create Ticket_MessageCreateWithoutSupport_ticketInput | Ticket_MessageCreateWithoutSupport_ticketInput[] | Ticket_MessageUncheckedCreateWithoutSupport_ticketInput | Ticket_MessageUncheckedCreateWithoutSupport_ticketInput[] No
connectOrCreate Ticket_MessageCreateOrConnectWithoutSupport_ticketInput | Ticket_MessageCreateOrConnectWithoutSupport_ticketInput[] No
upsert Ticket_MessageUpsertWithWhereUniqueWithoutSupport_ticketInput | Ticket_MessageUpsertWithWhereUniqueWithoutSupport_ticketInput[] No
createMany Ticket_MessageCreateManySupport_ticketInputEnvelope No
set Ticket_MessageWhereUniqueInput | Ticket_MessageWhereUniqueInput[] No
disconnect Ticket_MessageWhereUniqueInput | Ticket_MessageWhereUniqueInput[] No
delete Ticket_MessageWhereUniqueInput | Ticket_MessageWhereUniqueInput[] No
connect Ticket_MessageWhereUniqueInput | Ticket_MessageWhereUniqueInput[] No
update Ticket_MessageUpdateWithWhereUniqueWithoutSupport_ticketInput | Ticket_MessageUpdateWithWhereUniqueWithoutSupport_ticketInput[] No
updateMany Ticket_MessageUpdateManyWithWhereWithoutSupport_ticketInput | Ticket_MessageUpdateManyWithWhereWithoutSupport_ticketInput[] No
deleteMany Ticket_MessageScalarWhereInput | Ticket_MessageScalarWhereInput[] No

UserCreateNestedOneWithoutTicket_messagesInput

Name Type Nullable
create UserCreateWithoutTicket_messagesInput | UserUncheckedCreateWithoutTicket_messagesInput No
connectOrCreate UserCreateOrConnectWithoutTicket_messagesInput No
connect UserWhereUniqueInput No




NullableEnumContactStatusFieldUpdateOperationsInput

Name Type Nullable
set ContactStatus | Null Yes

UserCreateNestedOneWithoutTeam_membersInput

Name Type Nullable
create UserCreateWithoutTeam_membersInput | UserUncheckedCreateWithoutTeam_membersInput No
connectOrCreate UserCreateOrConnectWithoutTeam_membersInput No
connect UserWhereUniqueInput No

EnumTeamMemberRoleFieldUpdateOperationsInput

Name Type Nullable
set TeamMemberRole No

UserUpdateOneWithoutTeam_membersNestedInput

Name Type Nullable
create UserCreateWithoutTeam_membersInput | UserUncheckedCreateWithoutTeam_membersInput No
connectOrCreate UserCreateOrConnectWithoutTeam_membersInput No
upsert UserUpsertWithoutTeam_membersInput No
disconnect Boolean No
delete Boolean No
connect UserWhereUniqueInput No
update UserUpdateWithoutTeam_membersInput | UserUncheckedUpdateWithoutTeam_membersInput No

NestedIntFilter

Name Type Nullable
equals Int No
in Int | Int No
notIn Int | Int No
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntFilter No

NestedStringFilter

Name Type Nullable
equals String No
in String | String No
notIn String | String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringFilter No

NestedStringNullableFilter

Name Type Nullable
equals String | Null Yes
in String | String | Null Yes
notIn String | String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringNullableFilter | Null Yes

NestedEnumUserRoleFilter

Name Type Nullable
equals UserRole No
in UserRole[] | UserRole No
notIn UserRole[] | UserRole No
not UserRole | NestedEnumUserRoleFilter No

NestedEnumUserStatusNullableFilter

Name Type Nullable
equals UserStatus | Null Yes
in UserStatus[] | UserStatus | Null Yes
notIn UserStatus[] | UserStatus | Null Yes
not UserStatus | NestedEnumUserStatusNullableFilter | Null Yes

NestedBoolNullableFilter

Name Type Nullable
equals Boolean | Null Yes
not Boolean | NestedBoolNullableFilter | Null Yes

NestedDateTimeNullableFilter

Name Type Nullable
equals DateTime | Null Yes
in DateTime | DateTime | Null Yes
notIn DateTime | DateTime | Null Yes
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeNullableFilter | Null Yes

NestedDateTimeFilter

Name Type Nullable
equals DateTime No
in DateTime | DateTime No
notIn DateTime | DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeFilter No

NestedIntNullableFilter

Name Type Nullable
equals Int | Null Yes
in Int | Int | Null Yes
notIn Int | Int | Null Yes
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntNullableFilter | Null Yes

NestedIntWithAggregatesFilter

Name Type Nullable
equals Int No
in Int | Int No
notIn Int | Int No
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedFloatFilter No
_sum NestedIntFilter No
_min NestedIntFilter No
_max NestedIntFilter No

NestedFloatFilter

Name Type Nullable
equals Float No
in Float | Float No
notIn Float | Float No
lt Float No
lte Float No
gt Float No
gte Float No
not Float | NestedFloatFilter No

NestedStringWithAggregatesFilter

Name Type Nullable
equals String No
in String | String No
notIn String | String No
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringWithAggregatesFilter No
_count NestedIntFilter No
_min NestedStringFilter No
_max NestedStringFilter No

NestedStringNullableWithAggregatesFilter

Name Type Nullable
equals String | Null Yes
in String | String | Null Yes
notIn String | String | Null Yes
lt String No
lte String No
gt String No
gte String No
contains String No
startsWith String No
endsWith String No
not String | NestedStringNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedStringNullableFilter No
_max NestedStringNullableFilter No

NestedEnumUserRoleWithAggregatesFilter

Name Type Nullable
equals UserRole No
in UserRole[] | UserRole No
notIn UserRole[] | UserRole No
not UserRole | NestedEnumUserRoleWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumUserRoleFilter No
_max NestedEnumUserRoleFilter No

NestedEnumUserStatusNullableWithAggregatesFilter

Name Type Nullable
equals UserStatus | Null Yes
in UserStatus[] | UserStatus | Null Yes
notIn UserStatus[] | UserStatus | Null Yes
not UserStatus | NestedEnumUserStatusNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumUserStatusNullableFilter No
_max NestedEnumUserStatusNullableFilter No

NestedBoolNullableWithAggregatesFilter

Name Type Nullable
equals Boolean | Null Yes
not Boolean | NestedBoolNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedBoolNullableFilter No
_max NestedBoolNullableFilter No

NestedDateTimeNullableWithAggregatesFilter

Name Type Nullable
equals DateTime | Null Yes
in DateTime | DateTime | Null Yes
notIn DateTime | DateTime | Null Yes
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedDateTimeNullableFilter No
_max NestedDateTimeNullableFilter No

NestedJsonNullableFilter

Name Type Nullable
equals Json | JsonNullValueFilter No
path String No
string_contains String No
string_starts_with String No
string_ends_with String No
array_contains Json | Null Yes
array_starts_with Json | Null Yes
array_ends_with Json | Null Yes
lt Json No
lte Json No
gt Json No
gte Json No
not Json | JsonNullValueFilter No

NestedDateTimeWithAggregatesFilter

Name Type Nullable
equals DateTime No
in DateTime | DateTime No
notIn DateTime | DateTime No
lt DateTime No
lte DateTime No
gt DateTime No
gte DateTime No
not DateTime | NestedDateTimeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedDateTimeFilter No
_max NestedDateTimeFilter No

NestedIntNullableWithAggregatesFilter

Name Type Nullable
equals Int | Null Yes
in Int | Int | Null Yes
notIn Int | Int | Null Yes
lt Int No
lte Int No
gt Int No
gte Int No
not Int | NestedIntNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedFloatNullableFilter No
_sum NestedIntNullableFilter No
_min NestedIntNullableFilter No
_max NestedIntNullableFilter No

NestedFloatNullableFilter

Name Type Nullable
equals Float | Null Yes
in Float | Float | Null Yes
notIn Float | Float | Null Yes
lt Float No
lte Float No
gt Float No
gte Float No
not Float | NestedFloatNullableFilter | Null Yes

NestedEnumShopStatusFilter

Name Type Nullable
equals ShopStatus No
in ShopStatus[] | ShopStatus No
notIn ShopStatus[] | ShopStatus No
not ShopStatus | NestedEnumShopStatusFilter No

NestedEnumShopStatusWithAggregatesFilter

Name Type Nullable
equals ShopStatus No
in ShopStatus[] | ShopStatus No
notIn ShopStatus[] | ShopStatus No
not ShopStatus | NestedEnumShopStatusWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumShopStatusFilter No
_max NestedEnumShopStatusFilter No

NestedEnumGenericStatusFilter

Name Type Nullable
equals GenericStatus No
in GenericStatus[] | GenericStatus No
notIn GenericStatus[] | GenericStatus No
not GenericStatus | NestedEnumGenericStatusFilter No

NestedEnumElementTypeFilter

Name Type Nullable
equals ElementType No
in ElementType[] | ElementType No
notIn ElementType[] | ElementType No
not ElementType | NestedEnumElementTypeFilter No

NestedDecimalFilter

Name Type Nullable
equals Decimal No
in Decimal[] | Decimal No
notIn Decimal[] | Decimal No
lt Decimal No
lte Decimal No
gt Decimal No
gte Decimal No
not Decimal | NestedDecimalFilter No

NestedEnumDiscountTypeNullableFilter

Name Type Nullable
equals DiscountType | Null Yes
in DiscountType[] | DiscountType | Null Yes
notIn DiscountType[] | DiscountType | Null Yes
not DiscountType | NestedEnumDiscountTypeNullableFilter | Null Yes

NestedDecimalNullableFilter

Name Type Nullable
equals Decimal | Null Yes
in Decimal[] | Decimal | Null Yes
notIn Decimal[] | Decimal | Null Yes
lt Decimal No
lte Decimal No
gt Decimal No
gte Decimal No
not Decimal | NestedDecimalNullableFilter | Null Yes

NestedEnumGenericStatusWithAggregatesFilter

Name Type Nullable
equals GenericStatus No
in GenericStatus[] | GenericStatus No
notIn GenericStatus[] | GenericStatus No
not GenericStatus | NestedEnumGenericStatusWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumGenericStatusFilter No
_max NestedEnumGenericStatusFilter No

NestedEnumElementTypeWithAggregatesFilter

Name Type Nullable
equals ElementType No
in ElementType[] | ElementType No
notIn ElementType[] | ElementType No
not ElementType | NestedEnumElementTypeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumElementTypeFilter No
_max NestedEnumElementTypeFilter No

NestedDecimalWithAggregatesFilter

Name Type Nullable
equals Decimal No
in Decimal[] | Decimal No
notIn Decimal[] | Decimal No
lt Decimal No
lte Decimal No
gt Decimal No
gte Decimal No
not Decimal | NestedDecimalWithAggregatesFilter No
_count NestedIntFilter No
_avg NestedDecimalFilter No
_sum NestedDecimalFilter No
_min NestedDecimalFilter No
_max NestedDecimalFilter No

NestedEnumDiscountTypeNullableWithAggregatesFilter

Name Type Nullable
equals DiscountType | Null Yes
in DiscountType[] | DiscountType | Null Yes
notIn DiscountType[] | DiscountType | Null Yes
not DiscountType | NestedEnumDiscountTypeNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumDiscountTypeNullableFilter No
_max NestedEnumDiscountTypeNullableFilter No

NestedDecimalNullableWithAggregatesFilter

Name Type Nullable
equals Decimal | Null Yes
in Decimal[] | Decimal | Null Yes
notIn Decimal[] | Decimal | Null Yes
lt Decimal No
lte Decimal No
gt Decimal No
gte Decimal No
not Decimal | NestedDecimalNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_avg NestedDecimalNullableFilter No
_sum NestedDecimalNullableFilter No
_min NestedDecimalNullableFilter No
_max NestedDecimalNullableFilter No

NestedEnumBundleTypeFilter

Name Type Nullable
equals BundleType No
in BundleType[] | BundleType No
notIn BundleType[] | BundleType No
not BundleType | NestedEnumBundleTypeFilter No

NestedEnumBundleTypeWithAggregatesFilter

Name Type Nullable
equals BundleType No
in BundleType[] | BundleType No
notIn BundleType[] | BundleType No
not BundleType | NestedEnumBundleTypeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumBundleTypeFilter No
_max NestedEnumBundleTypeFilter No

NestedEnumAssetTypeFilter

Name Type Nullable
equals AssetType No
in AssetType[] | AssetType No
notIn AssetType[] | AssetType No
not AssetType | NestedEnumAssetTypeFilter No

NestedEnumAssetTypeWithAggregatesFilter

Name Type Nullable
equals AssetType No
in AssetType[] | AssetType No
notIn AssetType[] | AssetType No
not AssetType | NestedEnumAssetTypeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumAssetTypeFilter No
_max NestedEnumAssetTypeFilter No

NestedBoolFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolFilter No

NestedBoolWithAggregatesFilter

Name Type Nullable
equals Boolean No
not Boolean | NestedBoolWithAggregatesFilter No
_count NestedIntFilter No
_min NestedBoolFilter No
_max NestedBoolFilter No

NestedEnumOrderStatusFilter

Name Type Nullable
equals OrderStatus No
in OrderStatus[] | OrderStatus No
notIn OrderStatus[] | OrderStatus No
not OrderStatus | NestedEnumOrderStatusFilter No

NestedEnumOrderStatusWithAggregatesFilter

Name Type Nullable
equals OrderStatus No
in OrderStatus[] | OrderStatus No
notIn OrderStatus[] | OrderStatus No
not OrderStatus | NestedEnumOrderStatusWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumOrderStatusFilter No
_max NestedEnumOrderStatusFilter No

NestedEnumCouponStatusFilter

Name Type Nullable
equals CouponStatus No
in CouponStatus[] | CouponStatus No
notIn CouponStatus[] | CouponStatus No
not CouponStatus | NestedEnumCouponStatusFilter No

NestedEnumCouponStatusWithAggregatesFilter

Name Type Nullable
equals CouponStatus No
in CouponStatus[] | CouponStatus No
notIn CouponStatus[] | CouponStatus No
not CouponStatus | NestedEnumCouponStatusWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumCouponStatusFilter No
_max NestedEnumCouponStatusFilter No

NestedEnumAffiliatorTypeFilter

Name Type Nullable
equals AffiliatorType No
in AffiliatorType[] | AffiliatorType No
notIn AffiliatorType[] | AffiliatorType No
not AffiliatorType | NestedEnumAffiliatorTypeFilter No

NestedEnumAffiliatorStatusFilter

Name Type Nullable
equals AffiliatorStatus No
in AffiliatorStatus[] | AffiliatorStatus No
notIn AffiliatorStatus[] | AffiliatorStatus No
not AffiliatorStatus | NestedEnumAffiliatorStatusFilter No

NestedEnumAffiliatorTypeWithAggregatesFilter

Name Type Nullable
equals AffiliatorType No
in AffiliatorType[] | AffiliatorType No
notIn AffiliatorType[] | AffiliatorType No
not AffiliatorType | NestedEnumAffiliatorTypeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumAffiliatorTypeFilter No
_max NestedEnumAffiliatorTypeFilter No


NestedEnumDiscountTypeFilter

Name Type Nullable
equals DiscountType No
in DiscountType[] | DiscountType No
notIn DiscountType[] | DiscountType No
not DiscountType | NestedEnumDiscountTypeFilter No

NestedEnumCommissionStatusFilter

Name Type Nullable
equals CommissionStatus No
in CommissionStatus[] | CommissionStatus No
notIn CommissionStatus[] | CommissionStatus No
not CommissionStatus | NestedEnumCommissionStatusFilter No

NestedEnumDiscountTypeWithAggregatesFilter

Name Type Nullable
equals DiscountType No
in DiscountType[] | DiscountType No
notIn DiscountType[] | DiscountType No
not DiscountType | NestedEnumDiscountTypeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumDiscountTypeFilter No
_max NestedEnumDiscountTypeFilter No



NestedEnumPaymentMethodFilter

Name Type Nullable
equals PaymentMethod No
in PaymentMethod[] | PaymentMethod No
notIn PaymentMethod[] | PaymentMethod No
not PaymentMethod | NestedEnumPaymentMethodFilter No


NestedEnumPaymentMethodWithAggregatesFilter

Name Type Nullable
equals PaymentMethod No
in PaymentMethod[] | PaymentMethod No
notIn PaymentMethod[] | PaymentMethod No
not PaymentMethod | NestedEnumPaymentMethodWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumPaymentMethodFilter No
_max NestedEnumPaymentMethodFilter No

NestedJsonFilter

Name Type Nullable
equals Json | JsonNullValueFilter No
path String No
string_contains String No
string_starts_with String No
string_ends_with String No
array_contains Json | Null Yes
array_starts_with Json | Null Yes
array_ends_with Json | Null Yes
lt Json No
lte Json No
gt Json No
gte Json No
not Json | JsonNullValueFilter No

NestedEnumPricingPlanTypeFilter

Name Type Nullable
equals PricingPlanType No
in PricingPlanType[] | PricingPlanType No
notIn PricingPlanType[] | PricingPlanType No
not PricingPlanType | NestedEnumPricingPlanTypeFilter No


NestedEnumSubscriptionStatusFilter

Name Type Nullable
equals SubscriptionStatus No
in SubscriptionStatus[] | SubscriptionStatus No
notIn SubscriptionStatus[] | SubscriptionStatus No
not SubscriptionStatus | NestedEnumSubscriptionStatusFilter No

NestedEnumSubscriptionEndedTypeNullableFilter

Name Type Nullable
equals SubscriptionEndedType | Null Yes
in SubscriptionEndedType[] | SubscriptionEndedType | Null Yes
notIn SubscriptionEndedType[] | SubscriptionEndedType | Null Yes
not SubscriptionEndedType | NestedEnumSubscriptionEndedTypeNullableFilter | Null Yes



NestedEnumFaqStatusFilter

Name Type Nullable
equals FaqStatus No
in FaqStatus[] | FaqStatus No
notIn FaqStatus[] | FaqStatus No
not FaqStatus | NestedEnumFaqStatusFilter No

NestedEnumFaqStatusWithAggregatesFilter

Name Type Nullable
equals FaqStatus No
in FaqStatus[] | FaqStatus No
notIn FaqStatus[] | FaqStatus No
not FaqStatus | NestedEnumFaqStatusWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumFaqStatusFilter No
_max NestedEnumFaqStatusFilter No

NestedEnumAttachmentTypeFilter

Name Type Nullable
equals AttachmentType No
in AttachmentType[] | AttachmentType No
notIn AttachmentType[] | AttachmentType No
not AttachmentType | NestedEnumAttachmentTypeFilter No

NestedEnumAttachmentRefTypeFilter

Name Type Nullable
equals AttachmentRefType No
in AttachmentRefType[] | AttachmentRefType No
notIn AttachmentRefType[] | AttachmentRefType No
not AttachmentRefType | NestedEnumAttachmentRefTypeFilter No

NestedEnumAttachmentTypeWithAggregatesFilter

Name Type Nullable
equals AttachmentType No
in AttachmentType[] | AttachmentType No
notIn AttachmentType[] | AttachmentType No
not AttachmentType | NestedEnumAttachmentTypeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumAttachmentTypeFilter No
_max NestedEnumAttachmentTypeFilter No


NestedEnumSupportRefTypeFilter

Name Type Nullable
equals SupportRefType No
in SupportRefType[] | SupportRefType No
notIn SupportRefType[] | SupportRefType No
not SupportRefType | NestedEnumSupportRefTypeFilter No

NestedEnumSupportCriteriaFilter

Name Type Nullable
equals SupportCriteria No
in SupportCriteria[] | SupportCriteria No
notIn SupportCriteria[] | SupportCriteria No
not SupportCriteria | NestedEnumSupportCriteriaFilter No

NestedEnumSupportStatusNullableFilter

Name Type Nullable
equals SupportStatus | Null Yes
in SupportStatus[] | SupportStatus | Null Yes
notIn SupportStatus[] | SupportStatus | Null Yes
not SupportStatus | NestedEnumSupportStatusNullableFilter | Null Yes

NestedEnumSupportLabelNullableFilter

Name Type Nullable
equals SupportLabel | Null Yes
in SupportLabel[] | SupportLabel | Null Yes
notIn SupportLabel[] | SupportLabel | Null Yes
not SupportLabel | NestedEnumSupportLabelNullableFilter | Null Yes

NestedEnumSupportRefTypeWithAggregatesFilter

Name Type Nullable
equals SupportRefType No
in SupportRefType[] | SupportRefType No
notIn SupportRefType[] | SupportRefType No
not SupportRefType | NestedEnumSupportRefTypeWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumSupportRefTypeFilter No
_max NestedEnumSupportRefTypeFilter No


NestedEnumSupportStatusNullableWithAggregatesFilter

Name Type Nullable
equals SupportStatus | Null Yes
in SupportStatus[] | SupportStatus | Null Yes
notIn SupportStatus[] | SupportStatus | Null Yes
not SupportStatus | NestedEnumSupportStatusNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumSupportStatusNullableFilter No
_max NestedEnumSupportStatusNullableFilter No

NestedEnumSupportLabelNullableWithAggregatesFilter

Name Type Nullable
equals SupportLabel | Null Yes
in SupportLabel[] | SupportLabel | Null Yes
notIn SupportLabel[] | SupportLabel | Null Yes
not SupportLabel | NestedEnumSupportLabelNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumSupportLabelNullableFilter No
_max NestedEnumSupportLabelNullableFilter No

NestedEnumContactStatusNullableFilter

Name Type Nullable
equals ContactStatus | Null Yes
in ContactStatus[] | ContactStatus | Null Yes
notIn ContactStatus[] | ContactStatus | Null Yes
not ContactStatus | NestedEnumContactStatusNullableFilter | Null Yes

NestedEnumContactStatusNullableWithAggregatesFilter

Name Type Nullable
equals ContactStatus | Null Yes
in ContactStatus[] | ContactStatus | Null Yes
notIn ContactStatus[] | ContactStatus | Null Yes
not ContactStatus | NestedEnumContactStatusNullableWithAggregatesFilter | Null Yes
_count NestedIntNullableFilter No
_min NestedEnumContactStatusNullableFilter No
_max NestedEnumContactStatusNullableFilter No

NestedEnumTeamMemberRoleFilter

Name Type Nullable
equals TeamMemberRole No
in TeamMemberRole[] | TeamMemberRole No
notIn TeamMemberRole[] | TeamMemberRole No
not TeamMemberRole | NestedEnumTeamMemberRoleFilter No

NestedEnumTeamMemberRoleWithAggregatesFilter

Name Type Nullable
equals TeamMemberRole No
in TeamMemberRole[] | TeamMemberRole No
notIn TeamMemberRole[] | TeamMemberRole No
not TeamMemberRole | NestedEnumTeamMemberRoleWithAggregatesFilter No
_count NestedIntFilter No
_min NestedEnumTeamMemberRoleFilter No
_max NestedEnumTeamMemberRoleFilter No

ShopCreateWithoutUserInput

Name Type Nullable
uuid String No
shopify_shop_id Int No
name String No
domain String No
status ShopStatus No
created_at DateTime No
updated_at DateTime No
current_subscription Shop_SubscriptionCreateNestedOneWithoutShopsInput No
orders OrderCreateNestedManyWithoutShopInput No
bookmarked_elements BookmarkCreateNestedManyWithoutShopInput No
wishlisted_elements WishlistCreateNestedManyWithoutShopInput No
recent_used_elements Recent_Used_ElementCreateNestedManyWithoutShopInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutShopInput No

ShopUncheckedCreateWithoutUserInput

Name Type Nullable
id Int No
uuid String No
shopify_shop_id Int No
name String No
domain String No
status ShopStatus No
subscription_id Int | Null Yes
created_at DateTime No
updated_at DateTime No
orders OrderUncheckedCreateNestedManyWithoutShopInput No
bookmarked_elements BookmarkUncheckedCreateNestedManyWithoutShopInput No
wishlisted_elements WishlistUncheckedCreateNestedManyWithoutShopInput No
recent_used_elements Recent_Used_ElementUncheckedCreateNestedManyWithoutShopInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutShopInput No

ShopCreateOrConnectWithoutUserInput

Name Type Nullable
where ShopWhereUniqueInput No
create ShopCreateWithoutUserInput | ShopUncheckedCreateWithoutUserInput No

ShopCreateManyUserInputEnvelope

Name Type Nullable
data ShopCreateManyUserInput | ShopCreateManyUserInput[] No
skipDuplicates Boolean No

BundleCreateWithoutUserInput

Name Type Nullable
name String No
slug String No
description String No
featured_image String No
status GenericStatus No
type BundleType No
is_auto_price Boolean | Null Yes
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
elements Bundle_ElementCreateNestedManyWithoutBundleInput No
images Bundle_ImageCreateNestedManyWithoutBundleInput No
categories Bundle_CategoryCreateNestedManyWithoutBundleInput No

BundleUncheckedCreateWithoutUserInput

Name Type Nullable
id Int No
name String No
slug String No
description String No
featured_image String No
status GenericStatus No
type BundleType No
is_auto_price Boolean | Null Yes
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
elements Bundle_ElementUncheckedCreateNestedManyWithoutBundleInput No
images Bundle_ImageUncheckedCreateNestedManyWithoutBundleInput No
categories Bundle_CategoryUncheckedCreateNestedManyWithoutBundleInput No

BundleCreateOrConnectWithoutUserInput

Name Type Nullable
where BundleWhereUniqueInput No
create BundleCreateWithoutUserInput | BundleUncheckedCreateWithoutUserInput No

BundleCreateManyUserInputEnvelope

Name Type Nullable
data BundleCreateManyUserInput | BundleCreateManyUserInput[] No
skipDuplicates Boolean No

Bundle_ElementCreateWithoutUserInput

Name Type Nullable
element_type ElementType No
status GenericStatus No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
bundle BundleCreateNestedOneWithoutElementsInput No
element ElementCreateNestedOneWithoutBundlesInput No

Bundle_ElementUncheckedCreateWithoutUserInput

Name Type Nullable
id Int No
bundle_id Int No
element_id Int No
element_type ElementType No
status GenericStatus No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

Bundle_ElementCreateOrConnectWithoutUserInput

Name Type Nullable
where Bundle_ElementWhereUniqueInput No
create Bundle_ElementCreateWithoutUserInput | Bundle_ElementUncheckedCreateWithoutUserInput No

Bundle_ElementCreateManyUserInputEnvelope

Name Type Nullable
data Bundle_ElementCreateManyUserInput | Bundle_ElementCreateManyUserInput[] No
skipDuplicates Boolean No

ElementCreateWithoutUserInput

Name Type Nullable
name String No
slug String No
description String No
featured_image String No
content String No
file_name String No
status GenericStatus No
type ElementType No
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
wishlisted_count Int | Null Yes
bookmarked_count Int | Null Yes
added_theme_count Int | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
images Element_ImageCreateNestedManyWithoutElementInput No
best_Uses Element_Best_UseCreateNestedManyWithoutElementInput No
tags Element_TagCreateNestedManyWithoutElementInput No
categories Element_CategoryCreateNestedManyWithoutElementInput No
bundles Bundle_ElementCreateNestedManyWithoutElementInput No
wishlisted_elements WishlistCreateNestedManyWithoutElementInput No
bookmarked_elements BookmarkCreateNestedManyWithoutElementInput No
recent_used_elements Recent_Used_ElementCreateNestedManyWithoutElementInput No

ElementUncheckedCreateWithoutUserInput

Name Type Nullable
id Int No
name String No
slug String No
description String No
featured_image String No
content String No
file_name String No
status GenericStatus No
type ElementType No
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
wishlisted_count Int | Null Yes
bookmarked_count Int | Null Yes
added_theme_count Int | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
images Element_ImageUncheckedCreateNestedManyWithoutElementInput No
best_Uses Element_Best_UseUncheckedCreateNestedManyWithoutElementInput No
tags Element_TagUncheckedCreateNestedManyWithoutElementInput No
categories Element_CategoryUncheckedCreateNestedManyWithoutElementInput No
bundles Bundle_ElementUncheckedCreateNestedManyWithoutElementInput No
wishlisted_elements WishlistUncheckedCreateNestedManyWithoutElementInput No
bookmarked_elements BookmarkUncheckedCreateNestedManyWithoutElementInput No
recent_used_elements Recent_Used_ElementUncheckedCreateNestedManyWithoutElementInput No

ElementCreateOrConnectWithoutUserInput

Name Type Nullable
where ElementWhereUniqueInput No
create ElementCreateWithoutUserInput | ElementUncheckedCreateWithoutUserInput No

ElementCreateManyUserInputEnvelope

Name Type Nullable
data ElementCreateManyUserInput | ElementCreateManyUserInput[] No
skipDuplicates Boolean No

Pricing_PlanCreateWithoutUserInput

Name Type Nullable
name String No
tagline String No
description String No
type PricingPlanType No
is_recommended Boolean No
is_popular Boolean No
price Decimal No
discounted_price Decimal | Null Yes
yearly_discounted_price Decimal | Null Yes
trial_period Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
subscriptions Shop_SubscriptionCreateNestedManyWithoutPlanInput No
pricing_plan_features Pricing_Plan_FeatureCreateNestedManyWithoutPricing_planInput No

Pricing_PlanUncheckedCreateWithoutUserInput

Name Type Nullable
id Int No
name String No
tagline String No
description String No
type PricingPlanType No
is_recommended Boolean No
is_popular Boolean No
price Decimal No
discounted_price Decimal | Null Yes
yearly_discounted_price Decimal | Null Yes
trial_period Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
subscriptions Shop_SubscriptionUncheckedCreateNestedManyWithoutPlanInput No
pricing_plan_features Pricing_Plan_FeatureUncheckedCreateNestedManyWithoutPricing_planInput No

Pricing_PlanCreateOrConnectWithoutUserInput

Name Type Nullable
where Pricing_PlanWhereUniqueInput No
create Pricing_PlanCreateWithoutUserInput | Pricing_PlanUncheckedCreateWithoutUserInput No

Pricing_PlanCreateManyUserInputEnvelope

Name Type Nullable
data Pricing_PlanCreateManyUserInput | Pricing_PlanCreateManyUserInput[] No
skipDuplicates Boolean No

FaqCreateWithoutUserInput

Name Type Nullable
question String No
answer String No
status FaqStatus No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
category Faq_CategoryCreateNestedOneWithoutFaqsInput No

FaqUncheckedCreateWithoutUserInput

Name Type Nullable
id Int No
question String No
answer String No
status FaqStatus No
category_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

FaqCreateOrConnectWithoutUserInput

Name Type Nullable
where FaqWhereUniqueInput No
create FaqCreateWithoutUserInput | FaqUncheckedCreateWithoutUserInput No

FaqCreateManyUserInputEnvelope

Name Type Nullable
data FaqCreateManyUserInput | FaqCreateManyUserInput[] No
skipDuplicates Boolean No

Faq_CategoryCreateWithoutUserInput

Name Type Nullable
name String No
description String | Null Yes
banner String | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
faqs FaqCreateNestedManyWithoutCategoryInput No

Faq_CategoryUncheckedCreateWithoutUserInput

Name Type Nullable
id Int No
name String No
description String | Null Yes
banner String | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
faqs FaqUncheckedCreateNestedManyWithoutCategoryInput No

Faq_CategoryCreateOrConnectWithoutUserInput

Name Type Nullable
where Faq_CategoryWhereUniqueInput No
create Faq_CategoryCreateWithoutUserInput | Faq_CategoryUncheckedCreateWithoutUserInput No

Faq_CategoryCreateManyUserInputEnvelope

Name Type Nullable
data Faq_CategoryCreateManyUserInput | Faq_CategoryCreateManyUserInput[] No
skipDuplicates Boolean No

CategoryCreateWithoutUserInput

Name Type Nullable
name String No
slug String No
description String | Null Yes
type AssetType No
status GenericStatus No
image String | Null Yes
banner String | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
element_categories Element_CategoryCreateNestedManyWithoutCategoryInput No
bundle_categories Bundle_CategoryCreateNestedManyWithoutCategoryInput No

CategoryUncheckedCreateWithoutUserInput

Name Type Nullable
id Int No
name String No
slug String No
description String | Null Yes
type AssetType No
status GenericStatus No
image String | Null Yes
banner String | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
element_categories Element_CategoryUncheckedCreateNestedManyWithoutCategoryInput No
bundle_categories Bundle_CategoryUncheckedCreateNestedManyWithoutCategoryInput No

CategoryCreateOrConnectWithoutUserInput

Name Type Nullable
where CategoryWhereUniqueInput No
create CategoryCreateWithoutUserInput | CategoryUncheckedCreateWithoutUserInput No

CategoryCreateManyUserInputEnvelope

Name Type Nullable
data CategoryCreateManyUserInput | CategoryCreateManyUserInput[] No
skipDuplicates Boolean No

TagCreateWithoutUserInput

Name Type Nullable
name String No
slug String No
description String | Null Yes
image String | Null Yes
banner String | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
elements Element_TagCreateNestedManyWithoutTagInput No

TagUncheckedCreateWithoutUserInput

Name Type Nullable
id Int No
name String No
slug String No
description String | Null Yes
image String | Null Yes
banner String | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
elements Element_TagUncheckedCreateNestedManyWithoutTagInput No

TagCreateOrConnectWithoutUserInput

Name Type Nullable
where TagWhereUniqueInput No
create TagCreateWithoutUserInput | TagUncheckedCreateWithoutUserInput No

TagCreateManyUserInputEnvelope

Name Type Nullable
data TagCreateManyUserInput | TagCreateManyUserInput[] No
skipDuplicates Boolean No

Support_TicketCreateWithoutUserInput

Name Type Nullable
uuid String No
ref_id Int No
ref_type SupportRefType No
criteria SupportCriteria No
reason String No
description String No
status SupportStatus | Null Yes
label SupportLabel | Null Yes
assignee Int | Null Yes
assigned_at DateTime | Null Yes
created_at DateTime No
updated_at DateTime No
ticket_messages Ticket_MessageCreateNestedManyWithoutSupport_ticketInput No

Support_TicketUncheckedCreateWithoutUserInput

Name Type Nullable
id Int No
uuid String No
ref_id Int No
ref_type SupportRefType No
criteria SupportCriteria No
reason String No
description String No
status SupportStatus | Null Yes
label SupportLabel | Null Yes
assignee Int | Null Yes
assigned_at DateTime | Null Yes
created_at DateTime No
updated_at DateTime No
ticket_messages Ticket_MessageUncheckedCreateNestedManyWithoutSupport_ticketInput No

Support_TicketCreateOrConnectWithoutUserInput

Name Type Nullable
where Support_TicketWhereUniqueInput No
create Support_TicketCreateWithoutUserInput | Support_TicketUncheckedCreateWithoutUserInput No

Support_TicketCreateManyUserInputEnvelope

Name Type Nullable
data Support_TicketCreateManyUserInput | Support_TicketCreateManyUserInput[] No
skipDuplicates Boolean No

Ticket_MessageCreateWithoutUserInput

Name Type Nullable
message String No
created_at DateTime No
updated_at DateTime No
support_ticket Support_TicketCreateNestedOneWithoutTicket_messagesInput No

Ticket_MessageUncheckedCreateWithoutUserInput

Name Type Nullable
id Int No
ticket_id Int No
message String No
created_at DateTime No
updated_at DateTime No

Ticket_MessageCreateOrConnectWithoutUserInput

Name Type Nullable
where Ticket_MessageWhereUniqueInput No
create Ticket_MessageCreateWithoutUserInput | Ticket_MessageUncheckedCreateWithoutUserInput No

Ticket_MessageCreateManyUserInputEnvelope

Name Type Nullable
data Ticket_MessageCreateManyUserInput | Ticket_MessageCreateManyUserInput[] No
skipDuplicates Boolean No

AffiliatorCreateWithoutUserInput

Name Type Nullable
uuid String No
invited_by Int | Null Yes
type AffiliatorType No
type_other String | Null Yes
status AffiliatorStatus No
total_earned Decimal | Null Yes
total_paid Decimal | Null Yes
current_coupon_id Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
affiliator_withdraw_requests Affiliator_Withdraw_RequestCreateNestedManyWithoutAffiliatorInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutAffiliatorInput No
coupons CouponCreateNestedManyWithoutAffiliatorInput No

AffiliatorUncheckedCreateWithoutUserInput

Name Type Nullable
id Int No
uuid String No
invited_by Int | Null Yes
type AffiliatorType No
type_other String | Null Yes
status AffiliatorStatus No
total_earned Decimal | Null Yes
total_paid Decimal | Null Yes
current_coupon_id Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutAffiliatorInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutAffiliatorInput No
coupons CouponUncheckedCreateNestedManyWithoutAffiliatorInput No

AffiliatorCreateOrConnectWithoutUserInput

Name Type Nullable
where AffiliatorWhereUniqueInput No
create AffiliatorCreateWithoutUserInput | AffiliatorUncheckedCreateWithoutUserInput No

AffiliatorCreateManyUserInputEnvelope

Name Type Nullable
data AffiliatorCreateManyUserInput | AffiliatorCreateManyUserInput[] No
skipDuplicates Boolean No

Affiliator_CommissionCreateWithoutUserInput

Name Type Nullable
uuid String No
coupon_code String | Null Yes
order_amout Decimal | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
commission_type DiscountType No
commission_value Decimal No
amount Decimal No
status CommissionStatus No
created_at DateTime No
updated_at DateTime No
affiliator AffiliatorCreateNestedOneWithoutAffiliator_commissionsInput No
order OrderCreateNestedOneWithoutAffiliator_commissionsInput No
shop ShopCreateNestedOneWithoutAffiliator_commissionsInput No
coupon CouponCreateNestedOneWithoutAffiliator_commissionsInput No

Affiliator_CommissionUncheckedCreateWithoutUserInput

Name Type Nullable
id Int No
uuid String No
affiliator_id Int No
order_id Int | Null Yes
shop_id Int | Null Yes
coupon_id Int | Null Yes
coupon_code String | Null Yes
order_amout Decimal | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
commission_type DiscountType No
commission_value Decimal No
amount Decimal No
status CommissionStatus No
created_at DateTime No
updated_at DateTime No

Affiliator_CommissionCreateOrConnectWithoutUserInput

Name Type Nullable
where Affiliator_CommissionWhereUniqueInput No
create Affiliator_CommissionCreateWithoutUserInput | Affiliator_CommissionUncheckedCreateWithoutUserInput No

Affiliator_CommissionCreateManyUserInputEnvelope

Name Type Nullable
data Affiliator_CommissionCreateManyUserInput | Affiliator_CommissionCreateManyUserInput[] No
skipDuplicates Boolean No

Affiliator_Withdraw_RequestCreateWithoutAssigned_userInput

Name Type Nullable
uuid String No
status CommissionWithdrawStatus No
amount Decimal No
payment_method PaymentMethod No
payment_method_details JsonNullValueInput | Json No
note String | Null Yes
reject_reason String | Null Yes
created_at DateTime No
updated_at DateTime No
affiliator AffiliatorCreateNestedOneWithoutAffiliator_withdraw_requestsInput No
payment_method_detail User_Pament_MethodCreateNestedOneWithoutAffiliator_withdraw_requestsInput No

Affiliator_Withdraw_RequestUncheckedCreateWithoutAssigned_userInput

Name Type Nullable
id Int No
uuid String No
affiliator_id Int No
status CommissionWithdrawStatus No
amount Decimal No
payment_method_id Int No
payment_method PaymentMethod No
payment_method_details JsonNullValueInput | Json No
note String | Null Yes
reject_reason String | Null Yes
created_at DateTime No
updated_at DateTime No

Affiliator_Withdraw_RequestCreateOrConnectWithoutAssigned_userInput

Name Type Nullable
where Affiliator_Withdraw_RequestWhereUniqueInput No
create Affiliator_Withdraw_RequestCreateWithoutAssigned_userInput | Affiliator_Withdraw_RequestUncheckedCreateWithoutAssigned_userInput No

Affiliator_Withdraw_RequestCreateManyAssigned_userInputEnvelope

Name Type Nullable
data Affiliator_Withdraw_RequestCreateManyAssigned_userInput | Affiliator_Withdraw_RequestCreateManyAssigned_userInput[] No
skipDuplicates Boolean No

CouponCreateWithoutUserInput

Name Type Nullable
code String No
status CouponStatus No
expired_at DateTime | Null Yes
max_total_applied Int | Null Yes
max_applied_by_shop Int | Null Yes
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
min_order_amount Decimal | Null Yes
max_discount_limit Decimal | Null Yes
is_apply_on_asset_discount Boolean | Null Yes
commission_type DiscountType | Null Yes
commission_value Decimal | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
affiliator AffiliatorCreateNestedOneWithoutCouponsInput No
orders OrderCreateNestedManyWithoutCouponInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutCouponInput No

CouponUncheckedCreateWithoutUserInput

Name Type Nullable
id Int No
code String No
status CouponStatus No
expired_at DateTime | Null Yes
max_total_applied Int | Null Yes
max_applied_by_shop Int | Null Yes
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
min_order_amount Decimal | Null Yes
max_discount_limit Decimal | Null Yes
is_apply_on_asset_discount Boolean | Null Yes
affiliated_by Int | Null Yes
commission_type DiscountType | Null Yes
commission_value Decimal | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
orders OrderUncheckedCreateNestedManyWithoutCouponInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutCouponInput No

CouponCreateOrConnectWithoutUserInput

Name Type Nullable
where CouponWhereUniqueInput No
create CouponCreateWithoutUserInput | CouponUncheckedCreateWithoutUserInput No

CouponCreateManyUserInputEnvelope

Name Type Nullable
data CouponCreateManyUserInput | CouponCreateManyUserInput[] No
skipDuplicates Boolean No

User_Pament_MethodCreateWithoutUserInput

Name Type Nullable
method PaymentMethod No
details JsonNullValueInput | Json No
is_default Boolean No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
affiliator_withdraw_requests Affiliator_Withdraw_RequestCreateNestedManyWithoutPayment_method_detailInput No

User_Pament_MethodUncheckedCreateWithoutUserInput

Name Type Nullable
id Int No
method PaymentMethod No
details JsonNullValueInput | Json No
is_default Boolean No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutPayment_method_detailInput No

User_Pament_MethodCreateOrConnectWithoutUserInput

Name Type Nullable
where User_Pament_MethodWhereUniqueInput No
create User_Pament_MethodCreateWithoutUserInput | User_Pament_MethodUncheckedCreateWithoutUserInput No

User_Pament_MethodCreateManyUserInputEnvelope

Name Type Nullable
data User_Pament_MethodCreateManyUserInput | User_Pament_MethodCreateManyUserInput[] No
skipDuplicates Boolean No

Team_MemberCreateWithoutUserInput

Name Type Nullable
role TeamMemberRole No
designation String | Null Yes
badge String | Null Yes
invited_by Int | Null Yes
onboarded_at DateTime | Null Yes
created_at DateTime No
updated_at DateTime No

Team_MemberUncheckedCreateWithoutUserInput

Name Type Nullable
id Int No
role TeamMemberRole No
designation String | Null Yes
badge String | Null Yes
invited_by Int | Null Yes
onboarded_at DateTime | Null Yes
created_at DateTime No
updated_at DateTime No

Team_MemberCreateOrConnectWithoutUserInput

Name Type Nullable
where Team_MemberWhereUniqueInput No
create Team_MemberCreateWithoutUserInput | Team_MemberUncheckedCreateWithoutUserInput No

Team_MemberCreateManyUserInputEnvelope

Name Type Nullable
data Team_MemberCreateManyUserInput | Team_MemberCreateManyUserInput[] No
skipDuplicates Boolean No

ShopUpsertWithWhereUniqueWithoutUserInput

Name Type Nullable
where ShopWhereUniqueInput No
update ShopUpdateWithoutUserInput | ShopUncheckedUpdateWithoutUserInput No
create ShopCreateWithoutUserInput | ShopUncheckedCreateWithoutUserInput No

ShopUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where ShopWhereUniqueInput No
data ShopUpdateWithoutUserInput | ShopUncheckedUpdateWithoutUserInput No

ShopUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where ShopScalarWhereInput No
data ShopUpdateManyMutationInput | ShopUncheckedUpdateManyWithoutShopsInput No

ShopScalarWhereInput

Name Type Nullable
AND ShopScalarWhereInput | ShopScalarWhereInput[] No
OR ShopScalarWhereInput[] No
NOT ShopScalarWhereInput | ShopScalarWhereInput[] No
id IntFilter | Int No
uuid StringFilter | String No
user_id IntFilter | Int No
shopify_shop_id IntFilter | Int No
name StringFilter | String No
domain StringFilter | String No
status EnumShopStatusFilter | ShopStatus No
subscription_id IntNullableFilter | Int | Null Yes
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No

BundleUpsertWithWhereUniqueWithoutUserInput

Name Type Nullable
where BundleWhereUniqueInput No
update BundleUpdateWithoutUserInput | BundleUncheckedUpdateWithoutUserInput No
create BundleCreateWithoutUserInput | BundleUncheckedCreateWithoutUserInput No

BundleUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where BundleWhereUniqueInput No
data BundleUpdateWithoutUserInput | BundleUncheckedUpdateWithoutUserInput No

BundleUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where BundleScalarWhereInput No
data BundleUpdateManyMutationInput | BundleUncheckedUpdateManyWithoutBundlesInput No

BundleScalarWhereInput

Name Type Nullable
AND BundleScalarWhereInput | BundleScalarWhereInput[] No
OR BundleScalarWhereInput[] No
NOT BundleScalarWhereInput | BundleScalarWhereInput[] No
id IntFilter | Int No
name StringFilter | String No
slug StringFilter | String No
description StringFilter | String No
featured_image StringFilter | String No
status EnumGenericStatusFilter | GenericStatus No
type EnumBundleTypeFilter | BundleType No
is_auto_price BoolNullableFilter | Boolean | Null Yes
price DecimalFilter | Decimal No
discount_type EnumDiscountTypeNullableFilter | DiscountType | Null Yes
discount_value DecimalNullableFilter | Decimal | Null Yes
demo_url StringNullableFilter | String | Null Yes
video_url StringNullableFilter | String | Null Yes
version StringNullableFilter | String | Null Yes
user_id IntFilter | Int No
view_count IntNullableFilter | Int | Null Yes
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
deleted_at DateTimeNullableFilter | DateTime | Null Yes
deleted_by IntNullableFilter | Int | Null Yes


Bundle_ElementUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where Bundle_ElementWhereUniqueInput No
data Bundle_ElementUpdateWithoutUserInput | Bundle_ElementUncheckedUpdateWithoutUserInput No

Bundle_ElementUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where Bundle_ElementScalarWhereInput No
data Bundle_ElementUpdateManyMutationInput | Bundle_ElementUncheckedUpdateManyWithoutBundle_elementsInput No

Bundle_ElementScalarWhereInput

Name Type Nullable
AND Bundle_ElementScalarWhereInput | Bundle_ElementScalarWhereInput[] No
OR Bundle_ElementScalarWhereInput[] No
NOT Bundle_ElementScalarWhereInput | Bundle_ElementScalarWhereInput[] No
id IntFilter | Int No
bundle_id IntFilter | Int No
element_id IntFilter | Int No
element_type EnumElementTypeFilter | ElementType No
status EnumGenericStatusFilter | GenericStatus No
user_id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
deleted_at DateTimeNullableFilter | DateTime | Null Yes
deleted_by IntNullableFilter | Int | Null Yes


ElementUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where ElementWhereUniqueInput No
data ElementUpdateWithoutUserInput | ElementUncheckedUpdateWithoutUserInput No

ElementUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where ElementScalarWhereInput No
data ElementUpdateManyMutationInput | ElementUncheckedUpdateManyWithoutElementsInput No

ElementScalarWhereInput

Name Type Nullable
AND ElementScalarWhereInput | ElementScalarWhereInput[] No
OR ElementScalarWhereInput[] No
NOT ElementScalarWhereInput | ElementScalarWhereInput[] No
id IntFilter | Int No
name StringFilter | String No
slug StringFilter | String No
description StringFilter | String No
featured_image StringFilter | String No
content StringFilter | String No
file_name StringFilter | String No
status EnumGenericStatusFilter | GenericStatus No
type EnumElementTypeFilter | ElementType No
price DecimalFilter | Decimal No
discount_type EnumDiscountTypeNullableFilter | DiscountType | Null Yes
discount_value DecimalNullableFilter | Decimal | Null Yes
demo_url StringNullableFilter | String | Null Yes
video_url StringNullableFilter | String | Null Yes
version StringNullableFilter | String | Null Yes
user_id IntFilter | Int No
wishlisted_count IntNullableFilter | Int | Null Yes
bookmarked_count IntNullableFilter | Int | Null Yes
added_theme_count IntNullableFilter | Int | Null Yes
view_count IntNullableFilter | Int | Null Yes
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
deleted_at DateTimeNullableFilter | DateTime | Null Yes
deleted_by IntNullableFilter | Int | Null Yes


Pricing_PlanUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where Pricing_PlanWhereUniqueInput No
data Pricing_PlanUpdateWithoutUserInput | Pricing_PlanUncheckedUpdateWithoutUserInput No

Pricing_PlanUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where Pricing_PlanScalarWhereInput No
data Pricing_PlanUpdateManyMutationInput | Pricing_PlanUncheckedUpdateManyWithoutPricing_plansInput No

Pricing_PlanScalarWhereInput

Name Type Nullable
AND Pricing_PlanScalarWhereInput | Pricing_PlanScalarWhereInput[] No
OR Pricing_PlanScalarWhereInput[] No
NOT Pricing_PlanScalarWhereInput | Pricing_PlanScalarWhereInput[] No
id IntFilter | Int No
name StringFilter | String No
tagline StringFilter | String No
description StringFilter | String No
type EnumPricingPlanTypeFilter | PricingPlanType No
is_recommended BoolFilter | Boolean No
is_popular BoolFilter | Boolean No
price DecimalFilter | Decimal No
discounted_price DecimalNullableFilter | Decimal | Null Yes
yearly_discounted_price DecimalNullableFilter | Decimal | Null Yes
trial_period IntNullableFilter | Int | Null Yes
user_id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
deleted_at DateTimeNullableFilter | DateTime | Null Yes
deleted_by IntNullableFilter | Int | Null Yes

FaqUpsertWithWhereUniqueWithoutUserInput

Name Type Nullable
where FaqWhereUniqueInput No
update FaqUpdateWithoutUserInput | FaqUncheckedUpdateWithoutUserInput No
create FaqCreateWithoutUserInput | FaqUncheckedCreateWithoutUserInput No

FaqUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where FaqWhereUniqueInput No
data FaqUpdateWithoutUserInput | FaqUncheckedUpdateWithoutUserInput No

FaqUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where FaqScalarWhereInput No
data FaqUpdateManyMutationInput | FaqUncheckedUpdateManyWithoutFaqsInput No

FaqScalarWhereInput

Name Type Nullable
AND FaqScalarWhereInput | FaqScalarWhereInput[] No
OR FaqScalarWhereInput[] No
NOT FaqScalarWhereInput | FaqScalarWhereInput[] No
id IntFilter | Int No
user_id IntFilter | Int No
question StringFilter | String No
answer StringFilter | String No
status EnumFaqStatusFilter | FaqStatus No
category_id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
deleted_at DateTimeNullableFilter | DateTime | Null Yes
deleted_by IntNullableFilter | Int | Null Yes


Faq_CategoryUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where Faq_CategoryWhereUniqueInput No
data Faq_CategoryUpdateWithoutUserInput | Faq_CategoryUncheckedUpdateWithoutUserInput No

Faq_CategoryUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where Faq_CategoryScalarWhereInput No
data Faq_CategoryUpdateManyMutationInput | Faq_CategoryUncheckedUpdateManyWithoutFaq_categoriesInput No

Faq_CategoryScalarWhereInput

Name Type Nullable
AND Faq_CategoryScalarWhereInput | Faq_CategoryScalarWhereInput[] No
OR Faq_CategoryScalarWhereInput[] No
NOT Faq_CategoryScalarWhereInput | Faq_CategoryScalarWhereInput[] No
id IntFilter | Int No
name StringFilter | String No
user_id IntFilter | Int No
description StringNullableFilter | String | Null Yes
banner StringNullableFilter | String | Null Yes
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
deleted_at DateTimeNullableFilter | DateTime | Null Yes
deleted_by IntNullableFilter | Int | Null Yes


CategoryUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where CategoryWhereUniqueInput No
data CategoryUpdateWithoutUserInput | CategoryUncheckedUpdateWithoutUserInput No

CategoryUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where CategoryScalarWhereInput No
data CategoryUpdateManyMutationInput | CategoryUncheckedUpdateManyWithoutCategoriesInput No

CategoryScalarWhereInput

Name Type Nullable
AND CategoryScalarWhereInput | CategoryScalarWhereInput[] No
OR CategoryScalarWhereInput[] No
NOT CategoryScalarWhereInput | CategoryScalarWhereInput[] No
id IntFilter | Int No
name StringFilter | String No
slug StringFilter | String No
description StringNullableFilter | String | Null Yes
type EnumAssetTypeFilter | AssetType No
status EnumGenericStatusFilter | GenericStatus No
image StringNullableFilter | String | Null Yes
banner StringNullableFilter | String | Null Yes
user_id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
deleted_at DateTimeNullableFilter | DateTime | Null Yes
deleted_by IntNullableFilter | Int | Null Yes

TagUpsertWithWhereUniqueWithoutUserInput

Name Type Nullable
where TagWhereUniqueInput No
update TagUpdateWithoutUserInput | TagUncheckedUpdateWithoutUserInput No
create TagCreateWithoutUserInput | TagUncheckedCreateWithoutUserInput No

TagUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where TagWhereUniqueInput No
data TagUpdateWithoutUserInput | TagUncheckedUpdateWithoutUserInput No

TagUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where TagScalarWhereInput No
data TagUpdateManyMutationInput | TagUncheckedUpdateManyWithoutTagsInput No

TagScalarWhereInput

Name Type Nullable
AND TagScalarWhereInput | TagScalarWhereInput[] No
OR TagScalarWhereInput[] No
NOT TagScalarWhereInput | TagScalarWhereInput[] No
id IntFilter | Int No
name StringFilter | String No
slug StringFilter | String No
user_id IntFilter | Int No
description StringNullableFilter | String | Null Yes
image StringNullableFilter | String | Null Yes
banner StringNullableFilter | String | Null Yes
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
deleted_at DateTimeNullableFilter | DateTime | Null Yes
deleted_by IntNullableFilter | Int | Null Yes


Support_TicketUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where Support_TicketWhereUniqueInput No
data Support_TicketUpdateWithoutUserInput | Support_TicketUncheckedUpdateWithoutUserInput No

Support_TicketUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where Support_TicketScalarWhereInput No
data Support_TicketUpdateManyMutationInput | Support_TicketUncheckedUpdateManyWithoutSupport_ticketsInput No

Support_TicketScalarWhereInput

Name Type Nullable
AND Support_TicketScalarWhereInput | Support_TicketScalarWhereInput[] No
OR Support_TicketScalarWhereInput[] No
NOT Support_TicketScalarWhereInput | Support_TicketScalarWhereInput[] No
id IntFilter | Int No
uuid StringFilter | String No
user_id IntFilter | Int No
ref_id IntFilter | Int No
ref_type EnumSupportRefTypeFilter | SupportRefType No
criteria EnumSupportCriteriaFilter | SupportCriteria No
reason StringFilter | String No
description StringFilter | String No
status EnumSupportStatusNullableFilter | SupportStatus | Null Yes
label EnumSupportLabelNullableFilter | SupportLabel | Null Yes
assignee IntNullableFilter | Int | Null Yes
assigned_at DateTimeNullableFilter | DateTime | Null Yes
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No


Ticket_MessageUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where Ticket_MessageWhereUniqueInput No
data Ticket_MessageUpdateWithoutUserInput | Ticket_MessageUncheckedUpdateWithoutUserInput No

Ticket_MessageUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where Ticket_MessageScalarWhereInput No
data Ticket_MessageUpdateManyMutationInput | Ticket_MessageUncheckedUpdateManyWithoutTicket_messagesInput No

Ticket_MessageScalarWhereInput

Name Type Nullable
AND Ticket_MessageScalarWhereInput | Ticket_MessageScalarWhereInput[] No
OR Ticket_MessageScalarWhereInput[] No
NOT Ticket_MessageScalarWhereInput | Ticket_MessageScalarWhereInput[] No
id IntFilter | Int No
ticket_id IntFilter | Int No
user_id IntFilter | Int No
message StringFilter | String No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No


AffiliatorUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where AffiliatorWhereUniqueInput No
data AffiliatorUpdateWithoutUserInput | AffiliatorUncheckedUpdateWithoutUserInput No

AffiliatorUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where AffiliatorScalarWhereInput No
data AffiliatorUpdateManyMutationInput | AffiliatorUncheckedUpdateManyWithoutAffiliatorsInput No

AffiliatorScalarWhereInput

Name Type Nullable
AND AffiliatorScalarWhereInput | AffiliatorScalarWhereInput[] No
OR AffiliatorScalarWhereInput[] No
NOT AffiliatorScalarWhereInput | AffiliatorScalarWhereInput[] No
id IntFilter | Int No
uuid StringFilter | String No
user_id IntFilter | Int No
invited_by IntNullableFilter | Int | Null Yes
type EnumAffiliatorTypeFilter | AffiliatorType No
type_other StringNullableFilter | String | Null Yes
status EnumAffiliatorStatusFilter | AffiliatorStatus No
total_earned DecimalNullableFilter | Decimal | Null Yes
total_paid DecimalNullableFilter | Decimal | Null Yes
current_coupon_id IntNullableFilter | Int | Null Yes
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
deleted_at DateTimeNullableFilter | DateTime | Null Yes
deleted_by IntNullableFilter | Int | Null Yes


Affiliator_CommissionUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where Affiliator_CommissionWhereUniqueInput No
data Affiliator_CommissionUpdateWithoutUserInput | Affiliator_CommissionUncheckedUpdateWithoutUserInput No


Affiliator_CommissionScalarWhereInput

Name Type Nullable
AND Affiliator_CommissionScalarWhereInput | Affiliator_CommissionScalarWhereInput[] No
OR Affiliator_CommissionScalarWhereInput[] No
NOT Affiliator_CommissionScalarWhereInput | Affiliator_CommissionScalarWhereInput[] No
id IntFilter | Int No
uuid StringFilter | String No
affiliator_id IntFilter | Int No
user_id IntFilter | Int No
order_id IntNullableFilter | Int | Null Yes
shop_id IntNullableFilter | Int | Null Yes
coupon_id IntNullableFilter | Int | Null Yes
coupon_code StringNullableFilter | String | Null Yes
order_amout DecimalNullableFilter | Decimal | Null Yes
coupon_discount_type EnumDiscountTypeNullableFilter | DiscountType | Null Yes
coupon_discount_value DecimalNullableFilter | Decimal | Null Yes
commission_type EnumDiscountTypeFilter | DiscountType No
commission_value DecimalFilter | Decimal No
amount DecimalFilter | Decimal No
status EnumCommissionStatusFilter | CommissionStatus No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No


Affiliator_Withdraw_RequestUpdateWithWhereUniqueWithoutAssigned_userInput

Name Type Nullable
where Affiliator_Withdraw_RequestWhereUniqueInput No
data Affiliator_Withdraw_RequestUpdateWithoutAssigned_userInput | Affiliator_Withdraw_RequestUncheckedUpdateWithoutAssigned_userInput No


Affiliator_Withdraw_RequestScalarWhereInput

Name Type Nullable
AND Affiliator_Withdraw_RequestScalarWhereInput | Affiliator_Withdraw_RequestScalarWhereInput[] No
OR Affiliator_Withdraw_RequestScalarWhereInput[] No
NOT Affiliator_Withdraw_RequestScalarWhereInput | Affiliator_Withdraw_RequestScalarWhereInput[] No
id IntFilter | Int No
uuid StringFilter | String No
affiliator_id IntFilter | Int No
status EnumCommissionWithdrawStatusFilter | CommissionWithdrawStatus No
amount DecimalFilter | Decimal No
payment_method_id IntFilter | Int No
payment_method EnumPaymentMethodFilter | PaymentMethod No
payment_method_details JsonFilter No
assignee IntNullableFilter | Int | Null Yes
note StringNullableFilter | String | Null Yes
reject_reason StringNullableFilter | String | Null Yes
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No

CouponUpsertWithWhereUniqueWithoutUserInput

Name Type Nullable
where CouponWhereUniqueInput No
update CouponUpdateWithoutUserInput | CouponUncheckedUpdateWithoutUserInput No
create CouponCreateWithoutUserInput | CouponUncheckedCreateWithoutUserInput No

CouponUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where CouponWhereUniqueInput No
data CouponUpdateWithoutUserInput | CouponUncheckedUpdateWithoutUserInput No

CouponUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where CouponScalarWhereInput No
data CouponUpdateManyMutationInput | CouponUncheckedUpdateManyWithoutCouponsInput No

CouponScalarWhereInput

Name Type Nullable
AND CouponScalarWhereInput | CouponScalarWhereInput[] No
OR CouponScalarWhereInput[] No
NOT CouponScalarWhereInput | CouponScalarWhereInput[] No
id IntFilter | Int No
code StringFilter | String No
status EnumCouponStatusFilter | CouponStatus No
expired_at DateTimeNullableFilter | DateTime | Null Yes
max_total_applied IntNullableFilter | Int | Null Yes
max_applied_by_shop IntNullableFilter | Int | Null Yes
discount_type EnumDiscountTypeNullableFilter | DiscountType | Null Yes
discount_value DecimalNullableFilter | Decimal | Null Yes
min_order_amount DecimalNullableFilter | Decimal | Null Yes
max_discount_limit DecimalNullableFilter | Decimal | Null Yes
is_apply_on_asset_discount BoolNullableFilter | Boolean | Null Yes
affiliated_by IntNullableFilter | Int | Null Yes
commission_type EnumDiscountTypeNullableFilter | DiscountType | Null Yes
commission_value DecimalNullableFilter | Decimal | Null Yes
user_id IntFilter | Int No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
deleted_at DateTimeNullableFilter | DateTime | Null Yes
deleted_by IntNullableFilter | Int | Null Yes


User_Pament_MethodUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where User_Pament_MethodWhereUniqueInput No
data User_Pament_MethodUpdateWithoutUserInput | User_Pament_MethodUncheckedUpdateWithoutUserInput No

User_Pament_MethodUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where User_Pament_MethodScalarWhereInput No
data User_Pament_MethodUpdateManyMutationInput | User_Pament_MethodUncheckedUpdateManyWithoutUser_pament_methodsInput No

User_Pament_MethodScalarWhereInput

Name Type Nullable
AND User_Pament_MethodScalarWhereInput | User_Pament_MethodScalarWhereInput[] No
OR User_Pament_MethodScalarWhereInput[] No
NOT User_Pament_MethodScalarWhereInput | User_Pament_MethodScalarWhereInput[] No
id IntFilter | Int No
user_id IntFilter | Int No
method EnumPaymentMethodFilter | PaymentMethod No
details JsonFilter No
is_default BoolFilter | Boolean No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No
deleted_at DateTimeNullableFilter | DateTime | Null Yes


Team_MemberUpdateWithWhereUniqueWithoutUserInput

Name Type Nullable
where Team_MemberWhereUniqueInput No
data Team_MemberUpdateWithoutUserInput | Team_MemberUncheckedUpdateWithoutUserInput No

Team_MemberUpdateManyWithWhereWithoutUserInput

Name Type Nullable
where Team_MemberScalarWhereInput No
data Team_MemberUpdateManyMutationInput | Team_MemberUncheckedUpdateManyWithoutTeam_membersInput No

Team_MemberScalarWhereInput

Name Type Nullable
AND Team_MemberScalarWhereInput | Team_MemberScalarWhereInput[] No
OR Team_MemberScalarWhereInput[] No
NOT Team_MemberScalarWhereInput | Team_MemberScalarWhereInput[] No
id IntFilter | Int No
user_id IntFilter | Int No
role EnumTeamMemberRoleFilter | TeamMemberRole No
designation StringNullableFilter | String | Null Yes
badge StringNullableFilter | String | Null Yes
invited_by IntNullableFilter | Int | Null Yes
onboarded_at DateTimeNullableFilter | DateTime | Null Yes
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No

UserCreateWithoutShopsInput

Name Type Nullable
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
bundles BundleCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementCreateNestedManyWithoutUserInput No
elements ElementCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanCreateNestedManyWithoutUserInput No
faqs FaqCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryCreateNestedManyWithoutUserInput No
categories CategoryCreateNestedManyWithoutUserInput No
tags TagCreateNestedManyWithoutUserInput No
support_tickets Support_TicketCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageCreateNestedManyWithoutUserInput No
affiliators AffiliatorCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput No
coupons CouponCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodCreateNestedManyWithoutUserInput No
team_members Team_MemberCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutShopsInput

Name Type Nullable
id Int No
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
bundles BundleUncheckedCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementUncheckedCreateNestedManyWithoutUserInput No
elements ElementUncheckedCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanUncheckedCreateNestedManyWithoutUserInput No
faqs FaqUncheckedCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryUncheckedCreateNestedManyWithoutUserInput No
categories CategoryUncheckedCreateNestedManyWithoutUserInput No
tags TagUncheckedCreateNestedManyWithoutUserInput No
support_tickets Support_TicketUncheckedCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageUncheckedCreateNestedManyWithoutUserInput No
affiliators AffiliatorUncheckedCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutAssigned_userInput No
coupons CouponUncheckedCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodUncheckedCreateNestedManyWithoutUserInput No
team_members Team_MemberUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutShopsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutShopsInput | UserUncheckedCreateWithoutShopsInput No

Shop_SubscriptionCreateWithoutShopsInput

Name Type Nullable
uuid String No
shop_id Int No
plan_type PricingPlanType No
status SubscriptionStatus No
created_at DateTime No
ended_at DateTime | Null Yes
ended_type SubscriptionEndedType | Null Yes
updated_at DateTime No
amount Decimal No
payment_method PaymentMethod No
plan Pricing_PlanCreateNestedOneWithoutSubscriptionsInput No

Shop_SubscriptionUncheckedCreateWithoutShopsInput

Name Type Nullable
id Int No
uuid String No
shop_id Int No
plan_id Int No
plan_type PricingPlanType No
status SubscriptionStatus No
created_at DateTime No
ended_at DateTime | Null Yes
ended_type SubscriptionEndedType | Null Yes
updated_at DateTime No
amount Decimal No
payment_method PaymentMethod No

Shop_SubscriptionCreateOrConnectWithoutShopsInput

Name Type Nullable
where Shop_SubscriptionWhereUniqueInput No
create Shop_SubscriptionCreateWithoutShopsInput | Shop_SubscriptionUncheckedCreateWithoutShopsInput No

OrderCreateWithoutShopInput

Name Type Nullable
uuid String No
asset_type AssetType No
status OrderStatus No
sub_total Decimal No
discounted_amout Decimal | Null Yes
coupon_code String | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
grand_total Decimal No
affiliated_by Int | Null Yes
affiliated_commission Decimal | Null Yes
created_at DateTime No
updated_at DateTime No
coupon CouponCreateNestedOneWithoutOrdersInput No
order_items Order_ItemCreateNestedManyWithoutOrderInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutOrderInput No

OrderUncheckedCreateWithoutShopInput

Name Type Nullable
id Int No
uuid String No
asset_type AssetType No
status OrderStatus No
sub_total Decimal No
discounted_amout Decimal | Null Yes
coupon_id Int | Null Yes
coupon_code String | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
grand_total Decimal No
affiliated_by Int | Null Yes
affiliated_commission Decimal | Null Yes
created_at DateTime No
updated_at DateTime No
order_items Order_ItemUncheckedCreateNestedManyWithoutOrderInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutOrderInput No

OrderCreateOrConnectWithoutShopInput

Name Type Nullable
where OrderWhereUniqueInput No
create OrderCreateWithoutShopInput | OrderUncheckedCreateWithoutShopInput No

OrderCreateManyShopInputEnvelope

Name Type Nullable
data OrderCreateManyShopInput | OrderCreateManyShopInput[] No
skipDuplicates Boolean No

BookmarkCreateWithoutShopInput

Name Type Nullable
element_type ElementType No
created_at DateTime No
element ElementCreateNestedOneWithoutBookmarked_elementsInput No

BookmarkUncheckedCreateWithoutShopInput

Name Type Nullable
id Int No
element_id Int No
element_type ElementType No
created_at DateTime No

BookmarkCreateOrConnectWithoutShopInput

Name Type Nullable
where BookmarkWhereUniqueInput No
create BookmarkCreateWithoutShopInput | BookmarkUncheckedCreateWithoutShopInput No

BookmarkCreateManyShopInputEnvelope

Name Type Nullable
data BookmarkCreateManyShopInput | BookmarkCreateManyShopInput[] No
skipDuplicates Boolean No

WishlistCreateWithoutShopInput

Name Type Nullable
element_type ElementType No
created_at DateTime No
element ElementCreateNestedOneWithoutWishlisted_elementsInput No

WishlistUncheckedCreateWithoutShopInput

Name Type Nullable
id Int No
element_id Int No
element_type ElementType No
created_at DateTime No

WishlistCreateOrConnectWithoutShopInput

Name Type Nullable
where WishlistWhereUniqueInput No
create WishlistCreateWithoutShopInput | WishlistUncheckedCreateWithoutShopInput No

WishlistCreateManyShopInputEnvelope

Name Type Nullable
data WishlistCreateManyShopInput | WishlistCreateManyShopInput[] No
skipDuplicates Boolean No

Recent_Used_ElementCreateWithoutShopInput

Name Type Nullable
element_type ElementType No
created_at DateTime No
element ElementCreateNestedOneWithoutRecent_used_elementsInput No

Recent_Used_ElementUncheckedCreateWithoutShopInput

Name Type Nullable
id Int No
element_id Int No
element_type ElementType No
created_at DateTime No

Recent_Used_ElementCreateOrConnectWithoutShopInput

Name Type Nullable
where Recent_Used_ElementWhereUniqueInput No
create Recent_Used_ElementCreateWithoutShopInput | Recent_Used_ElementUncheckedCreateWithoutShopInput No

Recent_Used_ElementCreateManyShopInputEnvelope

Name Type Nullable
data Recent_Used_ElementCreateManyShopInput | Recent_Used_ElementCreateManyShopInput[] No
skipDuplicates Boolean No

Affiliator_CommissionCreateWithoutShopInput

Name Type Nullable
uuid String No
coupon_code String | Null Yes
order_amout Decimal | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
commission_type DiscountType No
commission_value Decimal No
amount Decimal No
status CommissionStatus No
created_at DateTime No
updated_at DateTime No
affiliator AffiliatorCreateNestedOneWithoutAffiliator_commissionsInput No
user UserCreateNestedOneWithoutAffiliator_commissionsInput No
order OrderCreateNestedOneWithoutAffiliator_commissionsInput No
coupon CouponCreateNestedOneWithoutAffiliator_commissionsInput No

Affiliator_CommissionUncheckedCreateWithoutShopInput

Name Type Nullable
id Int No
uuid String No
affiliator_id Int No
user_id Int No
order_id Int | Null Yes
coupon_id Int | Null Yes
coupon_code String | Null Yes
order_amout Decimal | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
commission_type DiscountType No
commission_value Decimal No
amount Decimal No
status CommissionStatus No
created_at DateTime No
updated_at DateTime No

Affiliator_CommissionCreateOrConnectWithoutShopInput

Name Type Nullable
where Affiliator_CommissionWhereUniqueInput No
create Affiliator_CommissionCreateWithoutShopInput | Affiliator_CommissionUncheckedCreateWithoutShopInput No

Affiliator_CommissionCreateManyShopInputEnvelope

Name Type Nullable
data Affiliator_CommissionCreateManyShopInput | Affiliator_CommissionCreateManyShopInput[] No
skipDuplicates Boolean No


UserUpdateWithoutShopsInput

Name Type Nullable
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
bundles BundleUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUpdateManyWithoutUserNestedInput No
elements ElementUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUpdateManyWithoutUserNestedInput No
faqs FaqUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUpdateManyWithoutUserNestedInput No
categories CategoryUpdateManyWithoutUserNestedInput No
tags TagUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUpdateManyWithoutUserNestedInput No
team_members Team_MemberUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutShopsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
bundles BundleUncheckedUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUncheckedUpdateManyWithoutUserNestedInput No
elements ElementUncheckedUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUncheckedUpdateManyWithoutUserNestedInput No
faqs FaqUncheckedUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUncheckedUpdateManyWithoutUserNestedInput No
categories CategoryUncheckedUpdateManyWithoutUserNestedInput No
tags TagUncheckedUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUncheckedUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUncheckedUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUncheckedUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUncheckedUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUncheckedUpdateManyWithoutUserNestedInput No
team_members Team_MemberUncheckedUpdateManyWithoutUserNestedInput No


Shop_SubscriptionUpdateWithoutShopsInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
shop_id Int | IntFieldUpdateOperationsInput No
plan_type PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput No
status SubscriptionStatus | EnumSubscriptionStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
ended_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
ended_type SubscriptionEndedType | NullableEnumSubscriptionEndedTypeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
payment_method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
plan Pricing_PlanUpdateOneWithoutSubscriptionsNestedInput No

Shop_SubscriptionUncheckedUpdateWithoutShopsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
shop_id Int | IntFieldUpdateOperationsInput No
plan_id Int | IntFieldUpdateOperationsInput No
plan_type PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput No
status SubscriptionStatus | EnumSubscriptionStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
ended_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
ended_type SubscriptionEndedType | NullableEnumSubscriptionEndedTypeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
payment_method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No

OrderUpsertWithWhereUniqueWithoutShopInput

Name Type Nullable
where OrderWhereUniqueInput No
update OrderUpdateWithoutShopInput | OrderUncheckedUpdateWithoutShopInput No
create OrderCreateWithoutShopInput | OrderUncheckedCreateWithoutShopInput No

OrderUpdateWithWhereUniqueWithoutShopInput

Name Type Nullable
where OrderWhereUniqueInput No
data OrderUpdateWithoutShopInput | OrderUncheckedUpdateWithoutShopInput No

OrderUpdateManyWithWhereWithoutShopInput

Name Type Nullable
where OrderScalarWhereInput No
data OrderUpdateManyMutationInput | OrderUncheckedUpdateManyWithoutOrdersInput No

OrderScalarWhereInput

Name Type Nullable
AND OrderScalarWhereInput | OrderScalarWhereInput[] No
OR OrderScalarWhereInput[] No
NOT OrderScalarWhereInput | OrderScalarWhereInput[] No
id IntFilter | Int No
uuid StringFilter | String No
shop_id IntFilter | Int No
asset_type EnumAssetTypeFilter | AssetType No
status EnumOrderStatusFilter | OrderStatus No
sub_total DecimalFilter | Decimal No
discounted_amout DecimalNullableFilter | Decimal | Null Yes
coupon_id IntNullableFilter | Int | Null Yes
coupon_code StringNullableFilter | String | Null Yes
coupon_discount_type EnumDiscountTypeNullableFilter | DiscountType | Null Yes
coupon_discount_value DecimalNullableFilter | Decimal | Null Yes
grand_total DecimalFilter | Decimal No
affiliated_by IntNullableFilter | Int | Null Yes
affiliated_commission DecimalNullableFilter | Decimal | Null Yes
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No


BookmarkUpdateWithWhereUniqueWithoutShopInput

Name Type Nullable
where BookmarkWhereUniqueInput No
data BookmarkUpdateWithoutShopInput | BookmarkUncheckedUpdateWithoutShopInput No

BookmarkUpdateManyWithWhereWithoutShopInput

Name Type Nullable
where BookmarkScalarWhereInput No
data BookmarkUpdateManyMutationInput | BookmarkUncheckedUpdateManyWithoutBookmarked_elementsInput No

BookmarkScalarWhereInput

Name Type Nullable
AND BookmarkScalarWhereInput | BookmarkScalarWhereInput[] No
OR BookmarkScalarWhereInput[] No
NOT BookmarkScalarWhereInput | BookmarkScalarWhereInput[] No
id IntFilter | Int No
shop_id IntFilter | Int No
element_id IntFilter | Int No
element_type EnumElementTypeFilter | ElementType No
created_at DateTimeFilter | DateTime No


WishlistUpdateWithWhereUniqueWithoutShopInput

Name Type Nullable
where WishlistWhereUniqueInput No
data WishlistUpdateWithoutShopInput | WishlistUncheckedUpdateWithoutShopInput No

WishlistUpdateManyWithWhereWithoutShopInput

Name Type Nullable
where WishlistScalarWhereInput No
data WishlistUpdateManyMutationInput | WishlistUncheckedUpdateManyWithoutWishlisted_elementsInput No

WishlistScalarWhereInput

Name Type Nullable
AND WishlistScalarWhereInput | WishlistScalarWhereInput[] No
OR WishlistScalarWhereInput[] No
NOT WishlistScalarWhereInput | WishlistScalarWhereInput[] No
id IntFilter | Int No
shop_id IntFilter | Int No
element_id IntFilter | Int No
element_type EnumElementTypeFilter | ElementType No
created_at DateTimeFilter | DateTime No


Recent_Used_ElementUpdateWithWhereUniqueWithoutShopInput

Name Type Nullable
where Recent_Used_ElementWhereUniqueInput No
data Recent_Used_ElementUpdateWithoutShopInput | Recent_Used_ElementUncheckedUpdateWithoutShopInput No


Recent_Used_ElementScalarWhereInput

Name Type Nullable
AND Recent_Used_ElementScalarWhereInput | Recent_Used_ElementScalarWhereInput[] No
OR Recent_Used_ElementScalarWhereInput[] No
NOT Recent_Used_ElementScalarWhereInput | Recent_Used_ElementScalarWhereInput[] No
id IntFilter | Int No
shop_id IntFilter | Int No
element_id IntFilter | Int No
element_type EnumElementTypeFilter | ElementType No
created_at DateTimeFilter | DateTime No


Affiliator_CommissionUpdateWithWhereUniqueWithoutShopInput

Name Type Nullable
where Affiliator_CommissionWhereUniqueInput No
data Affiliator_CommissionUpdateWithoutShopInput | Affiliator_CommissionUncheckedUpdateWithoutShopInput No


UserCreateWithoutElementsInput

Name Type Nullable
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopCreateNestedManyWithoutUserInput No
bundles BundleCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanCreateNestedManyWithoutUserInput No
faqs FaqCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryCreateNestedManyWithoutUserInput No
categories CategoryCreateNestedManyWithoutUserInput No
tags TagCreateNestedManyWithoutUserInput No
support_tickets Support_TicketCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageCreateNestedManyWithoutUserInput No
affiliators AffiliatorCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput No
coupons CouponCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodCreateNestedManyWithoutUserInput No
team_members Team_MemberCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutElementsInput

Name Type Nullable
id Int No
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopUncheckedCreateNestedManyWithoutUserInput No
bundles BundleUncheckedCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementUncheckedCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanUncheckedCreateNestedManyWithoutUserInput No
faqs FaqUncheckedCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryUncheckedCreateNestedManyWithoutUserInput No
categories CategoryUncheckedCreateNestedManyWithoutUserInput No
tags TagUncheckedCreateNestedManyWithoutUserInput No
support_tickets Support_TicketUncheckedCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageUncheckedCreateNestedManyWithoutUserInput No
affiliators AffiliatorUncheckedCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutAssigned_userInput No
coupons CouponUncheckedCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodUncheckedCreateNestedManyWithoutUserInput No
team_members Team_MemberUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutElementsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutElementsInput | UserUncheckedCreateWithoutElementsInput No

Element_ImageCreateWithoutElementInput

Name Type Nullable
url String No
created_at DateTime No

Element_ImageUncheckedCreateWithoutElementInput

Name Type Nullable
id Int No
url String No
created_at DateTime No

Element_ImageCreateOrConnectWithoutElementInput

Name Type Nullable
where Element_ImageWhereUniqueInput No
create Element_ImageCreateWithoutElementInput | Element_ImageUncheckedCreateWithoutElementInput No

Element_ImageCreateManyElementInputEnvelope

Name Type Nullable
data Element_ImageCreateManyElementInput | Element_ImageCreateManyElementInput[] No
skipDuplicates Boolean No

Element_Best_UseCreateWithoutElementInput

Name Type Nullable
title String No
description String No
created_at DateTime No
updated_at DateTime No

Element_Best_UseUncheckedCreateWithoutElementInput

Name Type Nullable
id Int No
title String No
description String No
created_at DateTime No
updated_at DateTime No

Element_Best_UseCreateOrConnectWithoutElementInput

Name Type Nullable
where Element_Best_UseWhereUniqueInput No
create Element_Best_UseCreateWithoutElementInput | Element_Best_UseUncheckedCreateWithoutElementInput No

Element_Best_UseCreateManyElementInputEnvelope

Name Type Nullable
data Element_Best_UseCreateManyElementInput | Element_Best_UseCreateManyElementInput[] No
skipDuplicates Boolean No

Element_TagCreateWithoutElementInput

Name Type Nullable
created_at DateTime No
tag TagCreateNestedOneWithoutElementsInput No

Element_TagUncheckedCreateWithoutElementInput

Name Type Nullable
id Int No
tag_id Int No
created_at DateTime No

Element_TagCreateOrConnectWithoutElementInput

Name Type Nullable
where Element_TagWhereUniqueInput No
create Element_TagCreateWithoutElementInput | Element_TagUncheckedCreateWithoutElementInput No

Element_TagCreateManyElementInputEnvelope

Name Type Nullable
data Element_TagCreateManyElementInput | Element_TagCreateManyElementInput[] No
skipDuplicates Boolean No

Element_CategoryCreateWithoutElementInput

Name Type Nullable
created_at DateTime No
category CategoryCreateNestedOneWithoutElement_categoriesInput No

Element_CategoryUncheckedCreateWithoutElementInput

Name Type Nullable
id Int No
category_id Int No
created_at DateTime No

Element_CategoryCreateOrConnectWithoutElementInput

Name Type Nullable
where Element_CategoryWhereUniqueInput No
create Element_CategoryCreateWithoutElementInput | Element_CategoryUncheckedCreateWithoutElementInput No

Element_CategoryCreateManyElementInputEnvelope

Name Type Nullable
data Element_CategoryCreateManyElementInput | Element_CategoryCreateManyElementInput[] No
skipDuplicates Boolean No

Bundle_ElementCreateWithoutElementInput

Name Type Nullable
element_type ElementType No
status GenericStatus No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutBundle_elementsInput No
bundle BundleCreateNestedOneWithoutElementsInput No

Bundle_ElementUncheckedCreateWithoutElementInput

Name Type Nullable
id Int No
bundle_id Int No
element_type ElementType No
status GenericStatus No
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

Bundle_ElementCreateOrConnectWithoutElementInput

Name Type Nullable
where Bundle_ElementWhereUniqueInput No
create Bundle_ElementCreateWithoutElementInput | Bundle_ElementUncheckedCreateWithoutElementInput No

Bundle_ElementCreateManyElementInputEnvelope

Name Type Nullable
data Bundle_ElementCreateManyElementInput | Bundle_ElementCreateManyElementInput[] No
skipDuplicates Boolean No

WishlistCreateWithoutElementInput

Name Type Nullable
element_type ElementType No
created_at DateTime No
shop ShopCreateNestedOneWithoutWishlisted_elementsInput No

WishlistUncheckedCreateWithoutElementInput

Name Type Nullable
id Int No
shop_id Int No
element_type ElementType No
created_at DateTime No

WishlistCreateOrConnectWithoutElementInput

Name Type Nullable
where WishlistWhereUniqueInput No
create WishlistCreateWithoutElementInput | WishlistUncheckedCreateWithoutElementInput No

WishlistCreateManyElementInputEnvelope

Name Type Nullable
data WishlistCreateManyElementInput | WishlistCreateManyElementInput[] No
skipDuplicates Boolean No

BookmarkCreateWithoutElementInput

Name Type Nullable
element_type ElementType No
created_at DateTime No
shop ShopCreateNestedOneWithoutBookmarked_elementsInput No

BookmarkUncheckedCreateWithoutElementInput

Name Type Nullable
id Int No
shop_id Int No
element_type ElementType No
created_at DateTime No

BookmarkCreateOrConnectWithoutElementInput

Name Type Nullable
where BookmarkWhereUniqueInput No
create BookmarkCreateWithoutElementInput | BookmarkUncheckedCreateWithoutElementInput No

BookmarkCreateManyElementInputEnvelope

Name Type Nullable
data BookmarkCreateManyElementInput | BookmarkCreateManyElementInput[] No
skipDuplicates Boolean No

Recent_Used_ElementCreateWithoutElementInput

Name Type Nullable
element_type ElementType No
created_at DateTime No
shop ShopCreateNestedOneWithoutRecent_used_elementsInput No

Recent_Used_ElementUncheckedCreateWithoutElementInput

Name Type Nullable
id Int No
shop_id Int No
element_type ElementType No
created_at DateTime No

Recent_Used_ElementCreateOrConnectWithoutElementInput

Name Type Nullable
where Recent_Used_ElementWhereUniqueInput No
create Recent_Used_ElementCreateWithoutElementInput | Recent_Used_ElementUncheckedCreateWithoutElementInput No

Recent_Used_ElementCreateManyElementInputEnvelope

Name Type Nullable
data Recent_Used_ElementCreateManyElementInput | Recent_Used_ElementCreateManyElementInput[] No
skipDuplicates Boolean No


UserUpdateWithoutElementsInput

Name Type Nullable
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUpdateManyWithoutUserNestedInput No
bundles BundleUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUpdateManyWithoutUserNestedInput No
faqs FaqUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUpdateManyWithoutUserNestedInput No
categories CategoryUpdateManyWithoutUserNestedInput No
tags TagUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUpdateManyWithoutUserNestedInput No
team_members Team_MemberUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutElementsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUncheckedUpdateManyWithoutUserNestedInput No
bundles BundleUncheckedUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUncheckedUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUncheckedUpdateManyWithoutUserNestedInput No
faqs FaqUncheckedUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUncheckedUpdateManyWithoutUserNestedInput No
categories CategoryUncheckedUpdateManyWithoutUserNestedInput No
tags TagUncheckedUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUncheckedUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUncheckedUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUncheckedUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUncheckedUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUncheckedUpdateManyWithoutUserNestedInput No
team_members Team_MemberUncheckedUpdateManyWithoutUserNestedInput No


Element_ImageUpdateWithWhereUniqueWithoutElementInput

Name Type Nullable
where Element_ImageWhereUniqueInput No
data Element_ImageUpdateWithoutElementInput | Element_ImageUncheckedUpdateWithoutElementInput No

Element_ImageUpdateManyWithWhereWithoutElementInput

Name Type Nullable
where Element_ImageScalarWhereInput No
data Element_ImageUpdateManyMutationInput | Element_ImageUncheckedUpdateManyWithoutImagesInput No

Element_ImageScalarWhereInput

Name Type Nullable
AND Element_ImageScalarWhereInput | Element_ImageScalarWhereInput[] No
OR Element_ImageScalarWhereInput[] No
NOT Element_ImageScalarWhereInput | Element_ImageScalarWhereInput[] No
id IntFilter | Int No
url StringFilter | String No
element_id IntFilter | Int No
created_at DateTimeFilter | DateTime No


Element_Best_UseUpdateWithWhereUniqueWithoutElementInput

Name Type Nullable
where Element_Best_UseWhereUniqueInput No
data Element_Best_UseUpdateWithoutElementInput | Element_Best_UseUncheckedUpdateWithoutElementInput No

Element_Best_UseUpdateManyWithWhereWithoutElementInput

Name Type Nullable
where Element_Best_UseScalarWhereInput No
data Element_Best_UseUpdateManyMutationInput | Element_Best_UseUncheckedUpdateManyWithoutBest_UsesInput No

Element_Best_UseScalarWhereInput

Name Type Nullable
AND Element_Best_UseScalarWhereInput | Element_Best_UseScalarWhereInput[] No
OR Element_Best_UseScalarWhereInput[] No
NOT Element_Best_UseScalarWhereInput | Element_Best_UseScalarWhereInput[] No
id IntFilter | Int No
element_id IntFilter | Int No
title StringFilter | String No
description StringFilter | String No
created_at DateTimeFilter | DateTime No
updated_at DateTimeFilter | DateTime No


Element_TagUpdateWithWhereUniqueWithoutElementInput

Name Type Nullable
where Element_TagWhereUniqueInput No
data Element_TagUpdateWithoutElementInput | Element_TagUncheckedUpdateWithoutElementInput No

Element_TagUpdateManyWithWhereWithoutElementInput

Name Type Nullable
where Element_TagScalarWhereInput No
data Element_TagUpdateManyMutationInput | Element_TagUncheckedUpdateManyWithoutTagsInput No

Element_TagScalarWhereInput

Name Type Nullable
AND Element_TagScalarWhereInput | Element_TagScalarWhereInput[] No
OR Element_TagScalarWhereInput[] No
NOT Element_TagScalarWhereInput | Element_TagScalarWhereInput[] No
id IntFilter | Int No
element_id IntFilter | Int No
tag_id IntFilter | Int No
created_at DateTimeFilter | DateTime No


Element_CategoryUpdateWithWhereUniqueWithoutElementInput

Name Type Nullable
where Element_CategoryWhereUniqueInput No
data Element_CategoryUpdateWithoutElementInput | Element_CategoryUncheckedUpdateWithoutElementInput No

Element_CategoryUpdateManyWithWhereWithoutElementInput

Name Type Nullable
where Element_CategoryScalarWhereInput No
data Element_CategoryUpdateManyMutationInput | Element_CategoryUncheckedUpdateManyWithoutCategoriesInput No

Element_CategoryScalarWhereInput

Name Type Nullable
AND Element_CategoryScalarWhereInput | Element_CategoryScalarWhereInput[] No
OR Element_CategoryScalarWhereInput[] No
NOT Element_CategoryScalarWhereInput | Element_CategoryScalarWhereInput[] No
id IntFilter | Int No
element_id IntFilter | Int No
category_id IntFilter | Int No
created_at DateTimeFilter | DateTime No


Bundle_ElementUpdateWithWhereUniqueWithoutElementInput

Name Type Nullable
where Bundle_ElementWhereUniqueInput No
data Bundle_ElementUpdateWithoutElementInput | Bundle_ElementUncheckedUpdateWithoutElementInput No

Bundle_ElementUpdateManyWithWhereWithoutElementInput

Name Type Nullable
where Bundle_ElementScalarWhereInput No
data Bundle_ElementUpdateManyMutationInput | Bundle_ElementUncheckedUpdateManyWithoutBundlesInput No


WishlistUpdateWithWhereUniqueWithoutElementInput

Name Type Nullable
where WishlistWhereUniqueInput No
data WishlistUpdateWithoutElementInput | WishlistUncheckedUpdateWithoutElementInput No

WishlistUpdateManyWithWhereWithoutElementInput

Name Type Nullable
where WishlistScalarWhereInput No
data WishlistUpdateManyMutationInput | WishlistUncheckedUpdateManyWithoutWishlisted_elementsInput No


BookmarkUpdateWithWhereUniqueWithoutElementInput

Name Type Nullable
where BookmarkWhereUniqueInput No
data BookmarkUpdateWithoutElementInput | BookmarkUncheckedUpdateWithoutElementInput No

BookmarkUpdateManyWithWhereWithoutElementInput

Name Type Nullable
where BookmarkScalarWhereInput No
data BookmarkUpdateManyMutationInput | BookmarkUncheckedUpdateManyWithoutBookmarked_elementsInput No


Recent_Used_ElementUpdateWithWhereUniqueWithoutElementInput

Name Type Nullable
where Recent_Used_ElementWhereUniqueInput No
data Recent_Used_ElementUpdateWithoutElementInput | Recent_Used_ElementUncheckedUpdateWithoutElementInput No

Recent_Used_ElementUpdateManyWithWhereWithoutElementInput

Name Type Nullable
where Recent_Used_ElementScalarWhereInput No
data Recent_Used_ElementUpdateManyMutationInput | Recent_Used_ElementUncheckedUpdateManyWithoutRecent_used_elementsInput No

UserCreateWithoutBundlesInput

Name Type Nullable
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementCreateNestedManyWithoutUserInput No
elements ElementCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanCreateNestedManyWithoutUserInput No
faqs FaqCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryCreateNestedManyWithoutUserInput No
categories CategoryCreateNestedManyWithoutUserInput No
tags TagCreateNestedManyWithoutUserInput No
support_tickets Support_TicketCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageCreateNestedManyWithoutUserInput No
affiliators AffiliatorCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput No
coupons CouponCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodCreateNestedManyWithoutUserInput No
team_members Team_MemberCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutBundlesInput

Name Type Nullable
id Int No
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopUncheckedCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementUncheckedCreateNestedManyWithoutUserInput No
elements ElementUncheckedCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanUncheckedCreateNestedManyWithoutUserInput No
faqs FaqUncheckedCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryUncheckedCreateNestedManyWithoutUserInput No
categories CategoryUncheckedCreateNestedManyWithoutUserInput No
tags TagUncheckedCreateNestedManyWithoutUserInput No
support_tickets Support_TicketUncheckedCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageUncheckedCreateNestedManyWithoutUserInput No
affiliators AffiliatorUncheckedCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutAssigned_userInput No
coupons CouponUncheckedCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodUncheckedCreateNestedManyWithoutUserInput No
team_members Team_MemberUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutBundlesInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutBundlesInput | UserUncheckedCreateWithoutBundlesInput No

Bundle_ElementCreateWithoutBundleInput

Name Type Nullable
element_type ElementType No
status GenericStatus No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutBundle_elementsInput No
element ElementCreateNestedOneWithoutBundlesInput No

Bundle_ElementUncheckedCreateWithoutBundleInput

Name Type Nullable
id Int No
element_id Int No
element_type ElementType No
status GenericStatus No
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

Bundle_ElementCreateOrConnectWithoutBundleInput

Name Type Nullable
where Bundle_ElementWhereUniqueInput No
create Bundle_ElementCreateWithoutBundleInput | Bundle_ElementUncheckedCreateWithoutBundleInput No

Bundle_ElementCreateManyBundleInputEnvelope

Name Type Nullable
data Bundle_ElementCreateManyBundleInput | Bundle_ElementCreateManyBundleInput[] No
skipDuplicates Boolean No

Bundle_ImageCreateWithoutBundleInput

Name Type Nullable
url String No
created_at DateTime No

Bundle_ImageUncheckedCreateWithoutBundleInput

Name Type Nullable
id Int No
url String No
created_at DateTime No

Bundle_ImageCreateOrConnectWithoutBundleInput

Name Type Nullable
where Bundle_ImageWhereUniqueInput No
create Bundle_ImageCreateWithoutBundleInput | Bundle_ImageUncheckedCreateWithoutBundleInput No

Bundle_ImageCreateManyBundleInputEnvelope

Name Type Nullable
data Bundle_ImageCreateManyBundleInput | Bundle_ImageCreateManyBundleInput[] No
skipDuplicates Boolean No

Bundle_CategoryCreateWithoutBundleInput

Name Type Nullable
created_at DateTime No
category CategoryCreateNestedOneWithoutBundle_categoriesInput No

Bundle_CategoryUncheckedCreateWithoutBundleInput

Name Type Nullable
id Int No
category_id Int No
created_at DateTime No

Bundle_CategoryCreateOrConnectWithoutBundleInput

Name Type Nullable
where Bundle_CategoryWhereUniqueInput No
create Bundle_CategoryCreateWithoutBundleInput | Bundle_CategoryUncheckedCreateWithoutBundleInput No

Bundle_CategoryCreateManyBundleInputEnvelope

Name Type Nullable
data Bundle_CategoryCreateManyBundleInput | Bundle_CategoryCreateManyBundleInput[] No
skipDuplicates Boolean No


UserUpdateWithoutBundlesInput

Name Type Nullable
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUpdateManyWithoutUserNestedInput No
elements ElementUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUpdateManyWithoutUserNestedInput No
faqs FaqUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUpdateManyWithoutUserNestedInput No
categories CategoryUpdateManyWithoutUserNestedInput No
tags TagUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUpdateManyWithoutUserNestedInput No
team_members Team_MemberUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutBundlesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUncheckedUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUncheckedUpdateManyWithoutUserNestedInput No
elements ElementUncheckedUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUncheckedUpdateManyWithoutUserNestedInput No
faqs FaqUncheckedUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUncheckedUpdateManyWithoutUserNestedInput No
categories CategoryUncheckedUpdateManyWithoutUserNestedInput No
tags TagUncheckedUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUncheckedUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUncheckedUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUncheckedUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUncheckedUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUncheckedUpdateManyWithoutUserNestedInput No
team_members Team_MemberUncheckedUpdateManyWithoutUserNestedInput No


Bundle_ElementUpdateWithWhereUniqueWithoutBundleInput

Name Type Nullable
where Bundle_ElementWhereUniqueInput No
data Bundle_ElementUpdateWithoutBundleInput | Bundle_ElementUncheckedUpdateWithoutBundleInput No

Bundle_ElementUpdateManyWithWhereWithoutBundleInput

Name Type Nullable
where Bundle_ElementScalarWhereInput No
data Bundle_ElementUpdateManyMutationInput | Bundle_ElementUncheckedUpdateManyWithoutElementsInput No


Bundle_ImageUpdateWithWhereUniqueWithoutBundleInput

Name Type Nullable
where Bundle_ImageWhereUniqueInput No
data Bundle_ImageUpdateWithoutBundleInput | Bundle_ImageUncheckedUpdateWithoutBundleInput No

Bundle_ImageUpdateManyWithWhereWithoutBundleInput

Name Type Nullable
where Bundle_ImageScalarWhereInput No
data Bundle_ImageUpdateManyMutationInput | Bundle_ImageUncheckedUpdateManyWithoutImagesInput No

Bundle_ImageScalarWhereInput

Name Type Nullable
AND Bundle_ImageScalarWhereInput | Bundle_ImageScalarWhereInput[] No
OR Bundle_ImageScalarWhereInput[] No
NOT Bundle_ImageScalarWhereInput | Bundle_ImageScalarWhereInput[] No
id IntFilter | Int No
url StringFilter | String No
bundle_id IntFilter | Int No
created_at DateTimeFilter | DateTime No


Bundle_CategoryUpdateWithWhereUniqueWithoutBundleInput

Name Type Nullable
where Bundle_CategoryWhereUniqueInput No
data Bundle_CategoryUpdateWithoutBundleInput | Bundle_CategoryUncheckedUpdateWithoutBundleInput No

Bundle_CategoryUpdateManyWithWhereWithoutBundleInput

Name Type Nullable
where Bundle_CategoryScalarWhereInput No
data Bundle_CategoryUpdateManyMutationInput | Bundle_CategoryUncheckedUpdateManyWithoutCategoriesInput No

Bundle_CategoryScalarWhereInput

Name Type Nullable
AND Bundle_CategoryScalarWhereInput | Bundle_CategoryScalarWhereInput[] No
OR Bundle_CategoryScalarWhereInput[] No
NOT Bundle_CategoryScalarWhereInput | Bundle_CategoryScalarWhereInput[] No
id IntFilter | Int No
bundle_id IntFilter | Int No
category_id IntFilter | Int No
created_at DateTimeFilter | DateTime No

UserCreateWithoutBundle_elementsInput

Name Type Nullable
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopCreateNestedManyWithoutUserInput No
bundles BundleCreateNestedManyWithoutUserInput No
elements ElementCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanCreateNestedManyWithoutUserInput No
faqs FaqCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryCreateNestedManyWithoutUserInput No
categories CategoryCreateNestedManyWithoutUserInput No
tags TagCreateNestedManyWithoutUserInput No
support_tickets Support_TicketCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageCreateNestedManyWithoutUserInput No
affiliators AffiliatorCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput No
coupons CouponCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodCreateNestedManyWithoutUserInput No
team_members Team_MemberCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutBundle_elementsInput

Name Type Nullable
id Int No
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopUncheckedCreateNestedManyWithoutUserInput No
bundles BundleUncheckedCreateNestedManyWithoutUserInput No
elements ElementUncheckedCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanUncheckedCreateNestedManyWithoutUserInput No
faqs FaqUncheckedCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryUncheckedCreateNestedManyWithoutUserInput No
categories CategoryUncheckedCreateNestedManyWithoutUserInput No
tags TagUncheckedCreateNestedManyWithoutUserInput No
support_tickets Support_TicketUncheckedCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageUncheckedCreateNestedManyWithoutUserInput No
affiliators AffiliatorUncheckedCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutAssigned_userInput No
coupons CouponUncheckedCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodUncheckedCreateNestedManyWithoutUserInput No
team_members Team_MemberUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutBundle_elementsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutBundle_elementsInput | UserUncheckedCreateWithoutBundle_elementsInput No

BundleCreateWithoutElementsInput

Name Type Nullable
name String No
slug String No
description String No
featured_image String No
status GenericStatus No
type BundleType No
is_auto_price Boolean | Null Yes
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutBundlesInput No
images Bundle_ImageCreateNestedManyWithoutBundleInput No
categories Bundle_CategoryCreateNestedManyWithoutBundleInput No

BundleUncheckedCreateWithoutElementsInput

Name Type Nullable
id Int No
name String No
slug String No
description String No
featured_image String No
status GenericStatus No
type BundleType No
is_auto_price Boolean | Null Yes
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
user_id Int No
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
images Bundle_ImageUncheckedCreateNestedManyWithoutBundleInput No
categories Bundle_CategoryUncheckedCreateNestedManyWithoutBundleInput No

BundleCreateOrConnectWithoutElementsInput

Name Type Nullable
where BundleWhereUniqueInput No
create BundleCreateWithoutElementsInput | BundleUncheckedCreateWithoutElementsInput No

ElementCreateWithoutBundlesInput

Name Type Nullable
name String No
slug String No
description String No
featured_image String No
content String No
file_name String No
status GenericStatus No
type ElementType No
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
wishlisted_count Int | Null Yes
bookmarked_count Int | Null Yes
added_theme_count Int | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutElementsInput No
images Element_ImageCreateNestedManyWithoutElementInput No
best_Uses Element_Best_UseCreateNestedManyWithoutElementInput No
tags Element_TagCreateNestedManyWithoutElementInput No
categories Element_CategoryCreateNestedManyWithoutElementInput No
wishlisted_elements WishlistCreateNestedManyWithoutElementInput No
bookmarked_elements BookmarkCreateNestedManyWithoutElementInput No
recent_used_elements Recent_Used_ElementCreateNestedManyWithoutElementInput No

ElementUncheckedCreateWithoutBundlesInput

Name Type Nullable
id Int No
name String No
slug String No
description String No
featured_image String No
content String No
file_name String No
status GenericStatus No
type ElementType No
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
user_id Int No
wishlisted_count Int | Null Yes
bookmarked_count Int | Null Yes
added_theme_count Int | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
images Element_ImageUncheckedCreateNestedManyWithoutElementInput No
best_Uses Element_Best_UseUncheckedCreateNestedManyWithoutElementInput No
tags Element_TagUncheckedCreateNestedManyWithoutElementInput No
categories Element_CategoryUncheckedCreateNestedManyWithoutElementInput No
wishlisted_elements WishlistUncheckedCreateNestedManyWithoutElementInput No
bookmarked_elements BookmarkUncheckedCreateNestedManyWithoutElementInput No
recent_used_elements Recent_Used_ElementUncheckedCreateNestedManyWithoutElementInput No

ElementCreateOrConnectWithoutBundlesInput

Name Type Nullable
where ElementWhereUniqueInput No
create ElementCreateWithoutBundlesInput | ElementUncheckedCreateWithoutBundlesInput No


UserUpdateWithoutBundle_elementsInput

Name Type Nullable
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUpdateManyWithoutUserNestedInput No
bundles BundleUpdateManyWithoutUserNestedInput No
elements ElementUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUpdateManyWithoutUserNestedInput No
faqs FaqUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUpdateManyWithoutUserNestedInput No
categories CategoryUpdateManyWithoutUserNestedInput No
tags TagUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUpdateManyWithoutUserNestedInput No
team_members Team_MemberUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutBundle_elementsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUncheckedUpdateManyWithoutUserNestedInput No
bundles BundleUncheckedUpdateManyWithoutUserNestedInput No
elements ElementUncheckedUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUncheckedUpdateManyWithoutUserNestedInput No
faqs FaqUncheckedUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUncheckedUpdateManyWithoutUserNestedInput No
categories CategoryUncheckedUpdateManyWithoutUserNestedInput No
tags TagUncheckedUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUncheckedUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUncheckedUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUncheckedUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUncheckedUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUncheckedUpdateManyWithoutUserNestedInput No
team_members Team_MemberUncheckedUpdateManyWithoutUserNestedInput No


BundleUpdateWithoutElementsInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type BundleType | EnumBundleTypeFieldUpdateOperationsInput No
is_auto_price Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutBundlesNestedInput No
images Bundle_ImageUpdateManyWithoutBundleNestedInput No
categories Bundle_CategoryUpdateManyWithoutBundleNestedInput No

BundleUncheckedUpdateWithoutElementsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type BundleType | EnumBundleTypeFieldUpdateOperationsInput No
is_auto_price Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
images Bundle_ImageUncheckedUpdateManyWithoutBundleNestedInput No
categories Bundle_CategoryUncheckedUpdateManyWithoutBundleNestedInput No


ElementUpdateWithoutBundlesInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
file_name String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type ElementType | EnumElementTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
wishlisted_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
bookmarked_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
added_theme_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutElementsNestedInput No
images Element_ImageUpdateManyWithoutElementNestedInput No
best_Uses Element_Best_UseUpdateManyWithoutElementNestedInput No
tags Element_TagUpdateManyWithoutElementNestedInput No
categories Element_CategoryUpdateManyWithoutElementNestedInput No
wishlisted_elements WishlistUpdateManyWithoutElementNestedInput No
bookmarked_elements BookmarkUpdateManyWithoutElementNestedInput No
recent_used_elements Recent_Used_ElementUpdateManyWithoutElementNestedInput No

ElementUncheckedUpdateWithoutBundlesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
file_name String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type ElementType | EnumElementTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
wishlisted_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
bookmarked_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
added_theme_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
images Element_ImageUncheckedUpdateManyWithoutElementNestedInput No
best_Uses Element_Best_UseUncheckedUpdateManyWithoutElementNestedInput No
tags Element_TagUncheckedUpdateManyWithoutElementNestedInput No
categories Element_CategoryUncheckedUpdateManyWithoutElementNestedInput No
wishlisted_elements WishlistUncheckedUpdateManyWithoutElementNestedInput No
bookmarked_elements BookmarkUncheckedUpdateManyWithoutElementNestedInput No
recent_used_elements Recent_Used_ElementUncheckedUpdateManyWithoutElementNestedInput No

ElementCreateWithoutImagesInput

Name Type Nullable
name String No
slug String No
description String No
featured_image String No
content String No
file_name String No
status GenericStatus No
type ElementType No
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
wishlisted_count Int | Null Yes
bookmarked_count Int | Null Yes
added_theme_count Int | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutElementsInput No
best_Uses Element_Best_UseCreateNestedManyWithoutElementInput No
tags Element_TagCreateNestedManyWithoutElementInput No
categories Element_CategoryCreateNestedManyWithoutElementInput No
bundles Bundle_ElementCreateNestedManyWithoutElementInput No
wishlisted_elements WishlistCreateNestedManyWithoutElementInput No
bookmarked_elements BookmarkCreateNestedManyWithoutElementInput No
recent_used_elements Recent_Used_ElementCreateNestedManyWithoutElementInput No

ElementUncheckedCreateWithoutImagesInput

Name Type Nullable
id Int No
name String No
slug String No
description String No
featured_image String No
content String No
file_name String No
status GenericStatus No
type ElementType No
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
user_id Int No
wishlisted_count Int | Null Yes
bookmarked_count Int | Null Yes
added_theme_count Int | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
best_Uses Element_Best_UseUncheckedCreateNestedManyWithoutElementInput No
tags Element_TagUncheckedCreateNestedManyWithoutElementInput No
categories Element_CategoryUncheckedCreateNestedManyWithoutElementInput No
bundles Bundle_ElementUncheckedCreateNestedManyWithoutElementInput No
wishlisted_elements WishlistUncheckedCreateNestedManyWithoutElementInput No
bookmarked_elements BookmarkUncheckedCreateNestedManyWithoutElementInput No
recent_used_elements Recent_Used_ElementUncheckedCreateNestedManyWithoutElementInput No

ElementCreateOrConnectWithoutImagesInput

Name Type Nullable
where ElementWhereUniqueInput No
create ElementCreateWithoutImagesInput | ElementUncheckedCreateWithoutImagesInput No


ElementUpdateWithoutImagesInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
file_name String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type ElementType | EnumElementTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
wishlisted_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
bookmarked_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
added_theme_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutElementsNestedInput No
best_Uses Element_Best_UseUpdateManyWithoutElementNestedInput No
tags Element_TagUpdateManyWithoutElementNestedInput No
categories Element_CategoryUpdateManyWithoutElementNestedInput No
bundles Bundle_ElementUpdateManyWithoutElementNestedInput No
wishlisted_elements WishlistUpdateManyWithoutElementNestedInput No
bookmarked_elements BookmarkUpdateManyWithoutElementNestedInput No
recent_used_elements Recent_Used_ElementUpdateManyWithoutElementNestedInput No

ElementUncheckedUpdateWithoutImagesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
file_name String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type ElementType | EnumElementTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
wishlisted_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
bookmarked_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
added_theme_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
best_Uses Element_Best_UseUncheckedUpdateManyWithoutElementNestedInput No
tags Element_TagUncheckedUpdateManyWithoutElementNestedInput No
categories Element_CategoryUncheckedUpdateManyWithoutElementNestedInput No
bundles Bundle_ElementUncheckedUpdateManyWithoutElementNestedInput No
wishlisted_elements WishlistUncheckedUpdateManyWithoutElementNestedInput No
bookmarked_elements BookmarkUncheckedUpdateManyWithoutElementNestedInput No
recent_used_elements Recent_Used_ElementUncheckedUpdateManyWithoutElementNestedInput No

BundleCreateWithoutImagesInput

Name Type Nullable
name String No
slug String No
description String No
featured_image String No
status GenericStatus No
type BundleType No
is_auto_price Boolean | Null Yes
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutBundlesInput No
elements Bundle_ElementCreateNestedManyWithoutBundleInput No
categories Bundle_CategoryCreateNestedManyWithoutBundleInput No

BundleUncheckedCreateWithoutImagesInput

Name Type Nullable
id Int No
name String No
slug String No
description String No
featured_image String No
status GenericStatus No
type BundleType No
is_auto_price Boolean | Null Yes
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
user_id Int No
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
elements Bundle_ElementUncheckedCreateNestedManyWithoutBundleInput No
categories Bundle_CategoryUncheckedCreateNestedManyWithoutBundleInput No

BundleCreateOrConnectWithoutImagesInput

Name Type Nullable
where BundleWhereUniqueInput No
create BundleCreateWithoutImagesInput | BundleUncheckedCreateWithoutImagesInput No


BundleUpdateWithoutImagesInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type BundleType | EnumBundleTypeFieldUpdateOperationsInput No
is_auto_price Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutBundlesNestedInput No
elements Bundle_ElementUpdateManyWithoutBundleNestedInput No
categories Bundle_CategoryUpdateManyWithoutBundleNestedInput No

BundleUncheckedUpdateWithoutImagesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type BundleType | EnumBundleTypeFieldUpdateOperationsInput No
is_auto_price Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
elements Bundle_ElementUncheckedUpdateManyWithoutBundleNestedInput No
categories Bundle_CategoryUncheckedUpdateManyWithoutBundleNestedInput No

ElementCreateWithoutBest_UsesInput

Name Type Nullable
name String No
slug String No
description String No
featured_image String No
content String No
file_name String No
status GenericStatus No
type ElementType No
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
wishlisted_count Int | Null Yes
bookmarked_count Int | Null Yes
added_theme_count Int | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutElementsInput No
images Element_ImageCreateNestedManyWithoutElementInput No
tags Element_TagCreateNestedManyWithoutElementInput No
categories Element_CategoryCreateNestedManyWithoutElementInput No
bundles Bundle_ElementCreateNestedManyWithoutElementInput No
wishlisted_elements WishlistCreateNestedManyWithoutElementInput No
bookmarked_elements BookmarkCreateNestedManyWithoutElementInput No
recent_used_elements Recent_Used_ElementCreateNestedManyWithoutElementInput No

ElementUncheckedCreateWithoutBest_UsesInput

Name Type Nullable
id Int No
name String No
slug String No
description String No
featured_image String No
content String No
file_name String No
status GenericStatus No
type ElementType No
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
user_id Int No
wishlisted_count Int | Null Yes
bookmarked_count Int | Null Yes
added_theme_count Int | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
images Element_ImageUncheckedCreateNestedManyWithoutElementInput No
tags Element_TagUncheckedCreateNestedManyWithoutElementInput No
categories Element_CategoryUncheckedCreateNestedManyWithoutElementInput No
bundles Bundle_ElementUncheckedCreateNestedManyWithoutElementInput No
wishlisted_elements WishlistUncheckedCreateNestedManyWithoutElementInput No
bookmarked_elements BookmarkUncheckedCreateNestedManyWithoutElementInput No
recent_used_elements Recent_Used_ElementUncheckedCreateNestedManyWithoutElementInput No

ElementCreateOrConnectWithoutBest_UsesInput

Name Type Nullable
where ElementWhereUniqueInput No
create ElementCreateWithoutBest_UsesInput | ElementUncheckedCreateWithoutBest_UsesInput No


ElementUpdateWithoutBest_UsesInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
file_name String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type ElementType | EnumElementTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
wishlisted_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
bookmarked_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
added_theme_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutElementsNestedInput No
images Element_ImageUpdateManyWithoutElementNestedInput No
tags Element_TagUpdateManyWithoutElementNestedInput No
categories Element_CategoryUpdateManyWithoutElementNestedInput No
bundles Bundle_ElementUpdateManyWithoutElementNestedInput No
wishlisted_elements WishlistUpdateManyWithoutElementNestedInput No
bookmarked_elements BookmarkUpdateManyWithoutElementNestedInput No
recent_used_elements Recent_Used_ElementUpdateManyWithoutElementNestedInput No

ElementUncheckedUpdateWithoutBest_UsesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
file_name String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type ElementType | EnumElementTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
wishlisted_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
bookmarked_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
added_theme_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
images Element_ImageUncheckedUpdateManyWithoutElementNestedInput No
tags Element_TagUncheckedUpdateManyWithoutElementNestedInput No
categories Element_CategoryUncheckedUpdateManyWithoutElementNestedInput No
bundles Bundle_ElementUncheckedUpdateManyWithoutElementNestedInput No
wishlisted_elements WishlistUncheckedUpdateManyWithoutElementNestedInput No
bookmarked_elements BookmarkUncheckedUpdateManyWithoutElementNestedInput No
recent_used_elements Recent_Used_ElementUncheckedUpdateManyWithoutElementNestedInput No

UserCreateWithoutCategoriesInput

Name Type Nullable
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopCreateNestedManyWithoutUserInput No
bundles BundleCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementCreateNestedManyWithoutUserInput No
elements ElementCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanCreateNestedManyWithoutUserInput No
faqs FaqCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryCreateNestedManyWithoutUserInput No
tags TagCreateNestedManyWithoutUserInput No
support_tickets Support_TicketCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageCreateNestedManyWithoutUserInput No
affiliators AffiliatorCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput No
coupons CouponCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodCreateNestedManyWithoutUserInput No
team_members Team_MemberCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutCategoriesInput

Name Type Nullable
id Int No
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopUncheckedCreateNestedManyWithoutUserInput No
bundles BundleUncheckedCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementUncheckedCreateNestedManyWithoutUserInput No
elements ElementUncheckedCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanUncheckedCreateNestedManyWithoutUserInput No
faqs FaqUncheckedCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryUncheckedCreateNestedManyWithoutUserInput No
tags TagUncheckedCreateNestedManyWithoutUserInput No
support_tickets Support_TicketUncheckedCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageUncheckedCreateNestedManyWithoutUserInput No
affiliators AffiliatorUncheckedCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutAssigned_userInput No
coupons CouponUncheckedCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodUncheckedCreateNestedManyWithoutUserInput No
team_members Team_MemberUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutCategoriesInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutCategoriesInput | UserUncheckedCreateWithoutCategoriesInput No

Element_CategoryCreateWithoutCategoryInput

Name Type Nullable
created_at DateTime No
element ElementCreateNestedOneWithoutCategoriesInput No

Element_CategoryUncheckedCreateWithoutCategoryInput

Name Type Nullable
id Int No
element_id Int No
created_at DateTime No

Element_CategoryCreateOrConnectWithoutCategoryInput

Name Type Nullable
where Element_CategoryWhereUniqueInput No
create Element_CategoryCreateWithoutCategoryInput | Element_CategoryUncheckedCreateWithoutCategoryInput No

Element_CategoryCreateManyCategoryInputEnvelope

Name Type Nullable
data Element_CategoryCreateManyCategoryInput | Element_CategoryCreateManyCategoryInput[] No
skipDuplicates Boolean No

Bundle_CategoryCreateWithoutCategoryInput

Name Type Nullable
created_at DateTime No
bundle BundleCreateNestedOneWithoutCategoriesInput No

Bundle_CategoryUncheckedCreateWithoutCategoryInput

Name Type Nullable
id Int No
bundle_id Int No
created_at DateTime No

Bundle_CategoryCreateOrConnectWithoutCategoryInput

Name Type Nullable
where Bundle_CategoryWhereUniqueInput No
create Bundle_CategoryCreateWithoutCategoryInput | Bundle_CategoryUncheckedCreateWithoutCategoryInput No

Bundle_CategoryCreateManyCategoryInputEnvelope

Name Type Nullable
data Bundle_CategoryCreateManyCategoryInput | Bundle_CategoryCreateManyCategoryInput[] No
skipDuplicates Boolean No


UserUpdateWithoutCategoriesInput

Name Type Nullable
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUpdateManyWithoutUserNestedInput No
bundles BundleUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUpdateManyWithoutUserNestedInput No
elements ElementUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUpdateManyWithoutUserNestedInput No
faqs FaqUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUpdateManyWithoutUserNestedInput No
tags TagUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUpdateManyWithoutUserNestedInput No
team_members Team_MemberUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutCategoriesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUncheckedUpdateManyWithoutUserNestedInput No
bundles BundleUncheckedUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUncheckedUpdateManyWithoutUserNestedInput No
elements ElementUncheckedUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUncheckedUpdateManyWithoutUserNestedInput No
faqs FaqUncheckedUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUncheckedUpdateManyWithoutUserNestedInput No
tags TagUncheckedUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUncheckedUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUncheckedUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUncheckedUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUncheckedUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUncheckedUpdateManyWithoutUserNestedInput No
team_members Team_MemberUncheckedUpdateManyWithoutUserNestedInput No


Element_CategoryUpdateWithWhereUniqueWithoutCategoryInput

Name Type Nullable
where Element_CategoryWhereUniqueInput No
data Element_CategoryUpdateWithoutCategoryInput | Element_CategoryUncheckedUpdateWithoutCategoryInput No

Element_CategoryUpdateManyWithWhereWithoutCategoryInput

Name Type Nullable
where Element_CategoryScalarWhereInput No
data Element_CategoryUpdateManyMutationInput | Element_CategoryUncheckedUpdateManyWithoutElement_categoriesInput No


Bundle_CategoryUpdateWithWhereUniqueWithoutCategoryInput

Name Type Nullable
where Bundle_CategoryWhereUniqueInput No
data Bundle_CategoryUpdateWithoutCategoryInput | Bundle_CategoryUncheckedUpdateWithoutCategoryInput No

Bundle_CategoryUpdateManyWithWhereWithoutCategoryInput

Name Type Nullable
where Bundle_CategoryScalarWhereInput No
data Bundle_CategoryUpdateManyMutationInput | Bundle_CategoryUncheckedUpdateManyWithoutBundle_categoriesInput No

ElementCreateWithoutCategoriesInput

Name Type Nullable
name String No
slug String No
description String No
featured_image String No
content String No
file_name String No
status GenericStatus No
type ElementType No
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
wishlisted_count Int | Null Yes
bookmarked_count Int | Null Yes
added_theme_count Int | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutElementsInput No
images Element_ImageCreateNestedManyWithoutElementInput No
best_Uses Element_Best_UseCreateNestedManyWithoutElementInput No
tags Element_TagCreateNestedManyWithoutElementInput No
bundles Bundle_ElementCreateNestedManyWithoutElementInput No
wishlisted_elements WishlistCreateNestedManyWithoutElementInput No
bookmarked_elements BookmarkCreateNestedManyWithoutElementInput No
recent_used_elements Recent_Used_ElementCreateNestedManyWithoutElementInput No

ElementUncheckedCreateWithoutCategoriesInput

Name Type Nullable
id Int No
name String No
slug String No
description String No
featured_image String No
content String No
file_name String No
status GenericStatus No
type ElementType No
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
user_id Int No
wishlisted_count Int | Null Yes
bookmarked_count Int | Null Yes
added_theme_count Int | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
images Element_ImageUncheckedCreateNestedManyWithoutElementInput No
best_Uses Element_Best_UseUncheckedCreateNestedManyWithoutElementInput No
tags Element_TagUncheckedCreateNestedManyWithoutElementInput No
bundles Bundle_ElementUncheckedCreateNestedManyWithoutElementInput No
wishlisted_elements WishlistUncheckedCreateNestedManyWithoutElementInput No
bookmarked_elements BookmarkUncheckedCreateNestedManyWithoutElementInput No
recent_used_elements Recent_Used_ElementUncheckedCreateNestedManyWithoutElementInput No

ElementCreateOrConnectWithoutCategoriesInput

Name Type Nullable
where ElementWhereUniqueInput No
create ElementCreateWithoutCategoriesInput | ElementUncheckedCreateWithoutCategoriesInput No

CategoryCreateWithoutElement_categoriesInput

Name Type Nullable
name String No
slug String No
description String | Null Yes
type AssetType No
status GenericStatus No
image String | Null Yes
banner String | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutCategoriesInput No
bundle_categories Bundle_CategoryCreateNestedManyWithoutCategoryInput No

CategoryUncheckedCreateWithoutElement_categoriesInput

Name Type Nullable
id Int No
name String No
slug String No
description String | Null Yes
type AssetType No
status GenericStatus No
image String | Null Yes
banner String | Null Yes
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
bundle_categories Bundle_CategoryUncheckedCreateNestedManyWithoutCategoryInput No

CategoryCreateOrConnectWithoutElement_categoriesInput

Name Type Nullable
where CategoryWhereUniqueInput No
create CategoryCreateWithoutElement_categoriesInput | CategoryUncheckedCreateWithoutElement_categoriesInput No


ElementUpdateWithoutCategoriesInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
file_name String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type ElementType | EnumElementTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
wishlisted_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
bookmarked_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
added_theme_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutElementsNestedInput No
images Element_ImageUpdateManyWithoutElementNestedInput No
best_Uses Element_Best_UseUpdateManyWithoutElementNestedInput No
tags Element_TagUpdateManyWithoutElementNestedInput No
bundles Bundle_ElementUpdateManyWithoutElementNestedInput No
wishlisted_elements WishlistUpdateManyWithoutElementNestedInput No
bookmarked_elements BookmarkUpdateManyWithoutElementNestedInput No
recent_used_elements Recent_Used_ElementUpdateManyWithoutElementNestedInput No

ElementUncheckedUpdateWithoutCategoriesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
file_name String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type ElementType | EnumElementTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
wishlisted_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
bookmarked_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
added_theme_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
images Element_ImageUncheckedUpdateManyWithoutElementNestedInput No
best_Uses Element_Best_UseUncheckedUpdateManyWithoutElementNestedInput No
tags Element_TagUncheckedUpdateManyWithoutElementNestedInput No
bundles Bundle_ElementUncheckedUpdateManyWithoutElementNestedInput No
wishlisted_elements WishlistUncheckedUpdateManyWithoutElementNestedInput No
bookmarked_elements BookmarkUncheckedUpdateManyWithoutElementNestedInput No
recent_used_elements Recent_Used_ElementUncheckedUpdateManyWithoutElementNestedInput No


CategoryUpdateWithoutElement_categoriesInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutCategoriesNestedInput No
bundle_categories Bundle_CategoryUpdateManyWithoutCategoryNestedInput No

CategoryUncheckedUpdateWithoutElement_categoriesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
bundle_categories Bundle_CategoryUncheckedUpdateManyWithoutCategoryNestedInput No

BundleCreateWithoutCategoriesInput

Name Type Nullable
name String No
slug String No
description String No
featured_image String No
status GenericStatus No
type BundleType No
is_auto_price Boolean | Null Yes
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutBundlesInput No
elements Bundle_ElementCreateNestedManyWithoutBundleInput No
images Bundle_ImageCreateNestedManyWithoutBundleInput No

BundleUncheckedCreateWithoutCategoriesInput

Name Type Nullable
id Int No
name String No
slug String No
description String No
featured_image String No
status GenericStatus No
type BundleType No
is_auto_price Boolean | Null Yes
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
user_id Int No
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
elements Bundle_ElementUncheckedCreateNestedManyWithoutBundleInput No
images Bundle_ImageUncheckedCreateNestedManyWithoutBundleInput No

BundleCreateOrConnectWithoutCategoriesInput

Name Type Nullable
where BundleWhereUniqueInput No
create BundleCreateWithoutCategoriesInput | BundleUncheckedCreateWithoutCategoriesInput No

CategoryCreateWithoutBundle_categoriesInput

Name Type Nullable
name String No
slug String No
description String | Null Yes
type AssetType No
status GenericStatus No
image String | Null Yes
banner String | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutCategoriesInput No
element_categories Element_CategoryCreateNestedManyWithoutCategoryInput No

CategoryUncheckedCreateWithoutBundle_categoriesInput

Name Type Nullable
id Int No
name String No
slug String No
description String | Null Yes
type AssetType No
status GenericStatus No
image String | Null Yes
banner String | Null Yes
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
element_categories Element_CategoryUncheckedCreateNestedManyWithoutCategoryInput No

CategoryCreateOrConnectWithoutBundle_categoriesInput

Name Type Nullable
where CategoryWhereUniqueInput No
create CategoryCreateWithoutBundle_categoriesInput | CategoryUncheckedCreateWithoutBundle_categoriesInput No


BundleUpdateWithoutCategoriesInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type BundleType | EnumBundleTypeFieldUpdateOperationsInput No
is_auto_price Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutBundlesNestedInput No
elements Bundle_ElementUpdateManyWithoutBundleNestedInput No
images Bundle_ImageUpdateManyWithoutBundleNestedInput No

BundleUncheckedUpdateWithoutCategoriesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type BundleType | EnumBundleTypeFieldUpdateOperationsInput No
is_auto_price Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
elements Bundle_ElementUncheckedUpdateManyWithoutBundleNestedInput No
images Bundle_ImageUncheckedUpdateManyWithoutBundleNestedInput No


CategoryUpdateWithoutBundle_categoriesInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutCategoriesNestedInput No
element_categories Element_CategoryUpdateManyWithoutCategoryNestedInput No

CategoryUncheckedUpdateWithoutBundle_categoriesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
element_categories Element_CategoryUncheckedUpdateManyWithoutCategoryNestedInput No

UserCreateWithoutTagsInput

Name Type Nullable
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopCreateNestedManyWithoutUserInput No
bundles BundleCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementCreateNestedManyWithoutUserInput No
elements ElementCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanCreateNestedManyWithoutUserInput No
faqs FaqCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryCreateNestedManyWithoutUserInput No
categories CategoryCreateNestedManyWithoutUserInput No
support_tickets Support_TicketCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageCreateNestedManyWithoutUserInput No
affiliators AffiliatorCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput No
coupons CouponCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodCreateNestedManyWithoutUserInput No
team_members Team_MemberCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutTagsInput

Name Type Nullable
id Int No
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopUncheckedCreateNestedManyWithoutUserInput No
bundles BundleUncheckedCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementUncheckedCreateNestedManyWithoutUserInput No
elements ElementUncheckedCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanUncheckedCreateNestedManyWithoutUserInput No
faqs FaqUncheckedCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryUncheckedCreateNestedManyWithoutUserInput No
categories CategoryUncheckedCreateNestedManyWithoutUserInput No
support_tickets Support_TicketUncheckedCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageUncheckedCreateNestedManyWithoutUserInput No
affiliators AffiliatorUncheckedCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutAssigned_userInput No
coupons CouponUncheckedCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodUncheckedCreateNestedManyWithoutUserInput No
team_members Team_MemberUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutTagsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutTagsInput | UserUncheckedCreateWithoutTagsInput No

Element_TagCreateWithoutTagInput

Name Type Nullable
created_at DateTime No
element ElementCreateNestedOneWithoutTagsInput No

Element_TagUncheckedCreateWithoutTagInput

Name Type Nullable
id Int No
element_id Int No
created_at DateTime No

Element_TagCreateOrConnectWithoutTagInput

Name Type Nullable
where Element_TagWhereUniqueInput No
create Element_TagCreateWithoutTagInput | Element_TagUncheckedCreateWithoutTagInput No

Element_TagCreateManyTagInputEnvelope

Name Type Nullable
data Element_TagCreateManyTagInput | Element_TagCreateManyTagInput[] No
skipDuplicates Boolean No


UserUpdateWithoutTagsInput

Name Type Nullable
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUpdateManyWithoutUserNestedInput No
bundles BundleUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUpdateManyWithoutUserNestedInput No
elements ElementUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUpdateManyWithoutUserNestedInput No
faqs FaqUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUpdateManyWithoutUserNestedInput No
categories CategoryUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUpdateManyWithoutUserNestedInput No
team_members Team_MemberUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutTagsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUncheckedUpdateManyWithoutUserNestedInput No
bundles BundleUncheckedUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUncheckedUpdateManyWithoutUserNestedInput No
elements ElementUncheckedUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUncheckedUpdateManyWithoutUserNestedInput No
faqs FaqUncheckedUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUncheckedUpdateManyWithoutUserNestedInput No
categories CategoryUncheckedUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUncheckedUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUncheckedUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUncheckedUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUncheckedUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUncheckedUpdateManyWithoutUserNestedInput No
team_members Team_MemberUncheckedUpdateManyWithoutUserNestedInput No


Element_TagUpdateWithWhereUniqueWithoutTagInput

Name Type Nullable
where Element_TagWhereUniqueInput No
data Element_TagUpdateWithoutTagInput | Element_TagUncheckedUpdateWithoutTagInput No

Element_TagUpdateManyWithWhereWithoutTagInput

Name Type Nullable
where Element_TagScalarWhereInput No
data Element_TagUpdateManyMutationInput | Element_TagUncheckedUpdateManyWithoutElementsInput No

TagCreateWithoutElementsInput

Name Type Nullable
name String No
slug String No
description String | Null Yes
image String | Null Yes
banner String | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutTagsInput No

TagUncheckedCreateWithoutElementsInput

Name Type Nullable
id Int No
name String No
slug String No
user_id Int No
description String | Null Yes
image String | Null Yes
banner String | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

TagCreateOrConnectWithoutElementsInput

Name Type Nullable
where TagWhereUniqueInput No
create TagCreateWithoutElementsInput | TagUncheckedCreateWithoutElementsInput No

ElementCreateWithoutTagsInput

Name Type Nullable
name String No
slug String No
description String No
featured_image String No
content String No
file_name String No
status GenericStatus No
type ElementType No
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
wishlisted_count Int | Null Yes
bookmarked_count Int | Null Yes
added_theme_count Int | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutElementsInput No
images Element_ImageCreateNestedManyWithoutElementInput No
best_Uses Element_Best_UseCreateNestedManyWithoutElementInput No
categories Element_CategoryCreateNestedManyWithoutElementInput No
bundles Bundle_ElementCreateNestedManyWithoutElementInput No
wishlisted_elements WishlistCreateNestedManyWithoutElementInput No
bookmarked_elements BookmarkCreateNestedManyWithoutElementInput No
recent_used_elements Recent_Used_ElementCreateNestedManyWithoutElementInput No

ElementUncheckedCreateWithoutTagsInput

Name Type Nullable
id Int No
name String No
slug String No
description String No
featured_image String No
content String No
file_name String No
status GenericStatus No
type ElementType No
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
user_id Int No
wishlisted_count Int | Null Yes
bookmarked_count Int | Null Yes
added_theme_count Int | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
images Element_ImageUncheckedCreateNestedManyWithoutElementInput No
best_Uses Element_Best_UseUncheckedCreateNestedManyWithoutElementInput No
categories Element_CategoryUncheckedCreateNestedManyWithoutElementInput No
bundles Bundle_ElementUncheckedCreateNestedManyWithoutElementInput No
wishlisted_elements WishlistUncheckedCreateNestedManyWithoutElementInput No
bookmarked_elements BookmarkUncheckedCreateNestedManyWithoutElementInput No
recent_used_elements Recent_Used_ElementUncheckedCreateNestedManyWithoutElementInput No

ElementCreateOrConnectWithoutTagsInput

Name Type Nullable
where ElementWhereUniqueInput No
create ElementCreateWithoutTagsInput | ElementUncheckedCreateWithoutTagsInput No


TagUpdateWithoutElementsInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutTagsNestedInput No

TagUncheckedUpdateWithoutElementsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes


ElementUpdateWithoutTagsInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
file_name String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type ElementType | EnumElementTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
wishlisted_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
bookmarked_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
added_theme_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutElementsNestedInput No
images Element_ImageUpdateManyWithoutElementNestedInput No
best_Uses Element_Best_UseUpdateManyWithoutElementNestedInput No
categories Element_CategoryUpdateManyWithoutElementNestedInput No
bundles Bundle_ElementUpdateManyWithoutElementNestedInput No
wishlisted_elements WishlistUpdateManyWithoutElementNestedInput No
bookmarked_elements BookmarkUpdateManyWithoutElementNestedInput No
recent_used_elements Recent_Used_ElementUpdateManyWithoutElementNestedInput No

ElementUncheckedUpdateWithoutTagsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
file_name String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type ElementType | EnumElementTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
wishlisted_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
bookmarked_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
added_theme_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
images Element_ImageUncheckedUpdateManyWithoutElementNestedInput No
best_Uses Element_Best_UseUncheckedUpdateManyWithoutElementNestedInput No
categories Element_CategoryUncheckedUpdateManyWithoutElementNestedInput No
bundles Bundle_ElementUncheckedUpdateManyWithoutElementNestedInput No
wishlisted_elements WishlistUncheckedUpdateManyWithoutElementNestedInput No
bookmarked_elements BookmarkUncheckedUpdateManyWithoutElementNestedInput No
recent_used_elements Recent_Used_ElementUncheckedUpdateManyWithoutElementNestedInput No

ShopCreateWithoutOrdersInput

Name Type Nullable
uuid String No
shopify_shop_id Int No
name String No
domain String No
status ShopStatus No
created_at DateTime No
updated_at DateTime No
user UserCreateNestedOneWithoutShopsInput No
current_subscription Shop_SubscriptionCreateNestedOneWithoutShopsInput No
bookmarked_elements BookmarkCreateNestedManyWithoutShopInput No
wishlisted_elements WishlistCreateNestedManyWithoutShopInput No
recent_used_elements Recent_Used_ElementCreateNestedManyWithoutShopInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutShopInput No

ShopUncheckedCreateWithoutOrdersInput

Name Type Nullable
id Int No
uuid String No
user_id Int No
shopify_shop_id Int No
name String No
domain String No
status ShopStatus No
subscription_id Int | Null Yes
created_at DateTime No
updated_at DateTime No
bookmarked_elements BookmarkUncheckedCreateNestedManyWithoutShopInput No
wishlisted_elements WishlistUncheckedCreateNestedManyWithoutShopInput No
recent_used_elements Recent_Used_ElementUncheckedCreateNestedManyWithoutShopInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutShopInput No

ShopCreateOrConnectWithoutOrdersInput

Name Type Nullable
where ShopWhereUniqueInput No
create ShopCreateWithoutOrdersInput | ShopUncheckedCreateWithoutOrdersInput No

CouponCreateWithoutOrdersInput

Name Type Nullable
code String No
status CouponStatus No
expired_at DateTime | Null Yes
max_total_applied Int | Null Yes
max_applied_by_shop Int | Null Yes
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
min_order_amount Decimal | Null Yes
max_discount_limit Decimal | Null Yes
is_apply_on_asset_discount Boolean | Null Yes
commission_type DiscountType | Null Yes
commission_value Decimal | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
affiliator AffiliatorCreateNestedOneWithoutCouponsInput No
user UserCreateNestedOneWithoutCouponsInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutCouponInput No

CouponUncheckedCreateWithoutOrdersInput

Name Type Nullable
id Int No
code String No
status CouponStatus No
expired_at DateTime | Null Yes
max_total_applied Int | Null Yes
max_applied_by_shop Int | Null Yes
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
min_order_amount Decimal | Null Yes
max_discount_limit Decimal | Null Yes
is_apply_on_asset_discount Boolean | Null Yes
affiliated_by Int | Null Yes
commission_type DiscountType | Null Yes
commission_value Decimal | Null Yes
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutCouponInput No

CouponCreateOrConnectWithoutOrdersInput

Name Type Nullable
where CouponWhereUniqueInput No
create CouponCreateWithoutOrdersInput | CouponUncheckedCreateWithoutOrdersInput No

Order_ItemCreateWithoutOrderInput

Name Type Nullable
asset_id Int No
asset_type AssetType No
price Decimal No
discounted_price Decimal | Null Yes
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
order_bundle_id Int | Null Yes

Order_ItemUncheckedCreateWithoutOrderInput

Name Type Nullable
id Int No
asset_id Int No
asset_type AssetType No
price Decimal No
discounted_price Decimal | Null Yes
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
order_bundle_id Int | Null Yes

Order_ItemCreateOrConnectWithoutOrderInput

Name Type Nullable
where Order_ItemWhereUniqueInput No
create Order_ItemCreateWithoutOrderInput | Order_ItemUncheckedCreateWithoutOrderInput No

Order_ItemCreateManyOrderInputEnvelope

Name Type Nullable
data Order_ItemCreateManyOrderInput | Order_ItemCreateManyOrderInput[] No
skipDuplicates Boolean No

Affiliator_CommissionCreateWithoutOrderInput

Name Type Nullable
uuid String No
coupon_code String | Null Yes
order_amout Decimal | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
commission_type DiscountType No
commission_value Decimal No
amount Decimal No
status CommissionStatus No
created_at DateTime No
updated_at DateTime No
affiliator AffiliatorCreateNestedOneWithoutAffiliator_commissionsInput No
user UserCreateNestedOneWithoutAffiliator_commissionsInput No
shop ShopCreateNestedOneWithoutAffiliator_commissionsInput No
coupon CouponCreateNestedOneWithoutAffiliator_commissionsInput No

Affiliator_CommissionUncheckedCreateWithoutOrderInput

Name Type Nullable
id Int No
uuid String No
affiliator_id Int No
user_id Int No
shop_id Int | Null Yes
coupon_id Int | Null Yes
coupon_code String | Null Yes
order_amout Decimal | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
commission_type DiscountType No
commission_value Decimal No
amount Decimal No
status CommissionStatus No
created_at DateTime No
updated_at DateTime No

Affiliator_CommissionCreateOrConnectWithoutOrderInput

Name Type Nullable
where Affiliator_CommissionWhereUniqueInput No
create Affiliator_CommissionCreateWithoutOrderInput | Affiliator_CommissionUncheckedCreateWithoutOrderInput No

Affiliator_CommissionCreateManyOrderInputEnvelope

Name Type Nullable
data Affiliator_CommissionCreateManyOrderInput | Affiliator_CommissionCreateManyOrderInput[] No
skipDuplicates Boolean No


ShopUpdateWithoutOrdersInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
shopify_shop_id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
domain String | StringFieldUpdateOperationsInput No
status ShopStatus | EnumShopStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneWithoutShopsNestedInput No
current_subscription Shop_SubscriptionUpdateOneWithoutShopsNestedInput No
bookmarked_elements BookmarkUpdateManyWithoutShopNestedInput No
wishlisted_elements WishlistUpdateManyWithoutShopNestedInput No
recent_used_elements Recent_Used_ElementUpdateManyWithoutShopNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutShopNestedInput No

ShopUncheckedUpdateWithoutOrdersInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
shopify_shop_id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
domain String | StringFieldUpdateOperationsInput No
status ShopStatus | EnumShopStatusFieldUpdateOperationsInput No
subscription_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
bookmarked_elements BookmarkUncheckedUpdateManyWithoutShopNestedInput No
wishlisted_elements WishlistUncheckedUpdateManyWithoutShopNestedInput No
recent_used_elements Recent_Used_ElementUncheckedUpdateManyWithoutShopNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutShopNestedInput No


CouponUpdateWithoutOrdersInput

Name Type Nullable
code String | StringFieldUpdateOperationsInput No
status CouponStatus | EnumCouponStatusFieldUpdateOperationsInput No
expired_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
max_total_applied Int | NullableIntFieldUpdateOperationsInput | Null Yes
max_applied_by_shop Int | NullableIntFieldUpdateOperationsInput | Null Yes
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
min_order_amount Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
max_discount_limit Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
is_apply_on_asset_discount Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
commission_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
affiliator AffiliatorUpdateOneWithoutCouponsNestedInput No
user UserUpdateOneWithoutCouponsNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutCouponNestedInput No

CouponUncheckedUpdateWithoutOrdersInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
status CouponStatus | EnumCouponStatusFieldUpdateOperationsInput No
expired_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
max_total_applied Int | NullableIntFieldUpdateOperationsInput | Null Yes
max_applied_by_shop Int | NullableIntFieldUpdateOperationsInput | Null Yes
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
min_order_amount Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
max_discount_limit Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
is_apply_on_asset_discount Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
affiliated_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
commission_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutCouponNestedInput No


Order_ItemUpdateWithWhereUniqueWithoutOrderInput

Name Type Nullable
where Order_ItemWhereUniqueInput No
data Order_ItemUpdateWithoutOrderInput | Order_ItemUncheckedUpdateWithoutOrderInput No

Order_ItemUpdateManyWithWhereWithoutOrderInput

Name Type Nullable
where Order_ItemScalarWhereInput No
data Order_ItemUpdateManyMutationInput | Order_ItemUncheckedUpdateManyWithoutOrder_itemsInput No

Order_ItemScalarWhereInput

Name Type Nullable
AND Order_ItemScalarWhereInput | Order_ItemScalarWhereInput[] No
OR Order_ItemScalarWhereInput[] No
NOT Order_ItemScalarWhereInput | Order_ItemScalarWhereInput[] No
id IntFilter | Int No
order_id IntFilter | Int No
asset_id IntFilter | Int No
asset_type EnumAssetTypeFilter | AssetType No
price DecimalFilter | Decimal No
discounted_price DecimalNullableFilter | Decimal | Null Yes
discount_type EnumDiscountTypeNullableFilter | DiscountType | Null Yes
discount_value DecimalNullableFilter | Decimal | Null Yes
order_bundle_id IntNullableFilter | Int | Null Yes


Affiliator_CommissionUpdateWithWhereUniqueWithoutOrderInput

Name Type Nullable
where Affiliator_CommissionWhereUniqueInput No
data Affiliator_CommissionUpdateWithoutOrderInput | Affiliator_CommissionUncheckedUpdateWithoutOrderInput No


OrderCreateWithoutOrder_itemsInput

Name Type Nullable
uuid String No
asset_type AssetType No
status OrderStatus No
sub_total Decimal No
discounted_amout Decimal | Null Yes
coupon_code String | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
grand_total Decimal No
affiliated_by Int | Null Yes
affiliated_commission Decimal | Null Yes
created_at DateTime No
updated_at DateTime No
shop ShopCreateNestedOneWithoutOrdersInput No
coupon CouponCreateNestedOneWithoutOrdersInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutOrderInput No

OrderUncheckedCreateWithoutOrder_itemsInput

Name Type Nullable
id Int No
uuid String No
shop_id Int No
asset_type AssetType No
status OrderStatus No
sub_total Decimal No
discounted_amout Decimal | Null Yes
coupon_id Int | Null Yes
coupon_code String | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
grand_total Decimal No
affiliated_by Int | Null Yes
affiliated_commission Decimal | Null Yes
created_at DateTime No
updated_at DateTime No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutOrderInput No

OrderCreateOrConnectWithoutOrder_itemsInput

Name Type Nullable
where OrderWhereUniqueInput No
create OrderCreateWithoutOrder_itemsInput | OrderUncheckedCreateWithoutOrder_itemsInput No


OrderUpdateWithoutOrder_itemsInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
asset_type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
status OrderStatus | EnumOrderStatusFieldUpdateOperationsInput No
sub_total Decimal | DecimalFieldUpdateOperationsInput No
discounted_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
grand_total Decimal | DecimalFieldUpdateOperationsInput No
affiliated_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
affiliated_commission Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
shop ShopUpdateOneWithoutOrdersNestedInput No
coupon CouponUpdateOneWithoutOrdersNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutOrderNestedInput No

OrderUncheckedUpdateWithoutOrder_itemsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
shop_id Int | IntFieldUpdateOperationsInput No
asset_type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
status OrderStatus | EnumOrderStatusFieldUpdateOperationsInput No
sub_total Decimal | DecimalFieldUpdateOperationsInput No
discounted_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
grand_total Decimal | DecimalFieldUpdateOperationsInput No
affiliated_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
affiliated_commission Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutOrderNestedInput No

AffiliatorCreateWithoutCouponsInput

Name Type Nullable
uuid String No
invited_by Int | Null Yes
type AffiliatorType No
type_other String | Null Yes
status AffiliatorStatus No
total_earned Decimal | Null Yes
total_paid Decimal | Null Yes
current_coupon_id Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutAffiliatorsInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestCreateNestedManyWithoutAffiliatorInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutAffiliatorInput No

AffiliatorUncheckedCreateWithoutCouponsInput

Name Type Nullable
id Int No
uuid String No
user_id Int No
invited_by Int | Null Yes
type AffiliatorType No
type_other String | Null Yes
status AffiliatorStatus No
total_earned Decimal | Null Yes
total_paid Decimal | Null Yes
current_coupon_id Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutAffiliatorInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutAffiliatorInput No

AffiliatorCreateOrConnectWithoutCouponsInput

Name Type Nullable
where AffiliatorWhereUniqueInput No
create AffiliatorCreateWithoutCouponsInput | AffiliatorUncheckedCreateWithoutCouponsInput No

UserCreateWithoutCouponsInput

Name Type Nullable
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopCreateNestedManyWithoutUserInput No
bundles BundleCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementCreateNestedManyWithoutUserInput No
elements ElementCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanCreateNestedManyWithoutUserInput No
faqs FaqCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryCreateNestedManyWithoutUserInput No
categories CategoryCreateNestedManyWithoutUserInput No
tags TagCreateNestedManyWithoutUserInput No
support_tickets Support_TicketCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageCreateNestedManyWithoutUserInput No
affiliators AffiliatorCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput No
user_pament_methods User_Pament_MethodCreateNestedManyWithoutUserInput No
team_members Team_MemberCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutCouponsInput

Name Type Nullable
id Int No
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopUncheckedCreateNestedManyWithoutUserInput No
bundles BundleUncheckedCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementUncheckedCreateNestedManyWithoutUserInput No
elements ElementUncheckedCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanUncheckedCreateNestedManyWithoutUserInput No
faqs FaqUncheckedCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryUncheckedCreateNestedManyWithoutUserInput No
categories CategoryUncheckedCreateNestedManyWithoutUserInput No
tags TagUncheckedCreateNestedManyWithoutUserInput No
support_tickets Support_TicketUncheckedCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageUncheckedCreateNestedManyWithoutUserInput No
affiliators AffiliatorUncheckedCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutAssigned_userInput No
user_pament_methods User_Pament_MethodUncheckedCreateNestedManyWithoutUserInput No
team_members Team_MemberUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutCouponsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutCouponsInput | UserUncheckedCreateWithoutCouponsInput No

OrderCreateWithoutCouponInput

Name Type Nullable
uuid String No
asset_type AssetType No
status OrderStatus No
sub_total Decimal No
discounted_amout Decimal | Null Yes
coupon_code String | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
grand_total Decimal No
affiliated_by Int | Null Yes
affiliated_commission Decimal | Null Yes
created_at DateTime No
updated_at DateTime No
shop ShopCreateNestedOneWithoutOrdersInput No
order_items Order_ItemCreateNestedManyWithoutOrderInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutOrderInput No

OrderUncheckedCreateWithoutCouponInput

Name Type Nullable
id Int No
uuid String No
shop_id Int No
asset_type AssetType No
status OrderStatus No
sub_total Decimal No
discounted_amout Decimal | Null Yes
coupon_code String | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
grand_total Decimal No
affiliated_by Int | Null Yes
affiliated_commission Decimal | Null Yes
created_at DateTime No
updated_at DateTime No
order_items Order_ItemUncheckedCreateNestedManyWithoutOrderInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutOrderInput No

OrderCreateOrConnectWithoutCouponInput

Name Type Nullable
where OrderWhereUniqueInput No
create OrderCreateWithoutCouponInput | OrderUncheckedCreateWithoutCouponInput No

OrderCreateManyCouponInputEnvelope

Name Type Nullable
data OrderCreateManyCouponInput | OrderCreateManyCouponInput[] No
skipDuplicates Boolean No

Affiliator_CommissionCreateWithoutCouponInput

Name Type Nullable
uuid String No
coupon_code String | Null Yes
order_amout Decimal | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
commission_type DiscountType No
commission_value Decimal No
amount Decimal No
status CommissionStatus No
created_at DateTime No
updated_at DateTime No
affiliator AffiliatorCreateNestedOneWithoutAffiliator_commissionsInput No
user UserCreateNestedOneWithoutAffiliator_commissionsInput No
order OrderCreateNestedOneWithoutAffiliator_commissionsInput No
shop ShopCreateNestedOneWithoutAffiliator_commissionsInput No

Affiliator_CommissionUncheckedCreateWithoutCouponInput

Name Type Nullable
id Int No
uuid String No
affiliator_id Int No
user_id Int No
order_id Int | Null Yes
shop_id Int | Null Yes
coupon_code String | Null Yes
order_amout Decimal | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
commission_type DiscountType No
commission_value Decimal No
amount Decimal No
status CommissionStatus No
created_at DateTime No
updated_at DateTime No

Affiliator_CommissionCreateOrConnectWithoutCouponInput

Name Type Nullable
where Affiliator_CommissionWhereUniqueInput No
create Affiliator_CommissionCreateWithoutCouponInput | Affiliator_CommissionUncheckedCreateWithoutCouponInput No

Affiliator_CommissionCreateManyCouponInputEnvelope

Name Type Nullable
data Affiliator_CommissionCreateManyCouponInput | Affiliator_CommissionCreateManyCouponInput[] No
skipDuplicates Boolean No


AffiliatorUpdateWithoutCouponsInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
invited_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
type AffiliatorType | EnumAffiliatorTypeFieldUpdateOperationsInput No
type_other String | NullableStringFieldUpdateOperationsInput | Null Yes
status AffiliatorStatus | EnumAffiliatorStatusFieldUpdateOperationsInput No
total_earned Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
total_paid Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
current_coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutAffiliatorsNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUpdateManyWithoutAffiliatorNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutAffiliatorNestedInput No

AffiliatorUncheckedUpdateWithoutCouponsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
invited_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
type AffiliatorType | EnumAffiliatorTypeFieldUpdateOperationsInput No
type_other String | NullableStringFieldUpdateOperationsInput | Null Yes
status AffiliatorStatus | EnumAffiliatorStatusFieldUpdateOperationsInput No
total_earned Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
total_paid Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
current_coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutAffiliatorNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutAffiliatorNestedInput No


UserUpdateWithoutCouponsInput

Name Type Nullable
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUpdateManyWithoutUserNestedInput No
bundles BundleUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUpdateManyWithoutUserNestedInput No
elements ElementUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUpdateManyWithoutUserNestedInput No
faqs FaqUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUpdateManyWithoutUserNestedInput No
categories CategoryUpdateManyWithoutUserNestedInput No
tags TagUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUpdateManyWithoutAssigned_userNestedInput No
user_pament_methods User_Pament_MethodUpdateManyWithoutUserNestedInput No
team_members Team_MemberUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutCouponsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUncheckedUpdateManyWithoutUserNestedInput No
bundles BundleUncheckedUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUncheckedUpdateManyWithoutUserNestedInput No
elements ElementUncheckedUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUncheckedUpdateManyWithoutUserNestedInput No
faqs FaqUncheckedUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUncheckedUpdateManyWithoutUserNestedInput No
categories CategoryUncheckedUpdateManyWithoutUserNestedInput No
tags TagUncheckedUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUncheckedUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUncheckedUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUncheckedUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutAssigned_userNestedInput No
user_pament_methods User_Pament_MethodUncheckedUpdateManyWithoutUserNestedInput No
team_members Team_MemberUncheckedUpdateManyWithoutUserNestedInput No


OrderUpdateWithWhereUniqueWithoutCouponInput

Name Type Nullable
where OrderWhereUniqueInput No
data OrderUpdateWithoutCouponInput | OrderUncheckedUpdateWithoutCouponInput No

OrderUpdateManyWithWhereWithoutCouponInput

Name Type Nullable
where OrderScalarWhereInput No
data OrderUpdateManyMutationInput | OrderUncheckedUpdateManyWithoutOrdersInput No


Affiliator_CommissionUpdateWithWhereUniqueWithoutCouponInput

Name Type Nullable
where Affiliator_CommissionWhereUniqueInput No
data Affiliator_CommissionUpdateWithoutCouponInput | Affiliator_CommissionUncheckedUpdateWithoutCouponInput No


UserCreateWithoutAffiliatorsInput

Name Type Nullable
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopCreateNestedManyWithoutUserInput No
bundles BundleCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementCreateNestedManyWithoutUserInput No
elements ElementCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanCreateNestedManyWithoutUserInput No
faqs FaqCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryCreateNestedManyWithoutUserInput No
categories CategoryCreateNestedManyWithoutUserInput No
tags TagCreateNestedManyWithoutUserInput No
support_tickets Support_TicketCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput No
coupons CouponCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodCreateNestedManyWithoutUserInput No
team_members Team_MemberCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutAffiliatorsInput

Name Type Nullable
id Int No
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopUncheckedCreateNestedManyWithoutUserInput No
bundles BundleUncheckedCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementUncheckedCreateNestedManyWithoutUserInput No
elements ElementUncheckedCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanUncheckedCreateNestedManyWithoutUserInput No
faqs FaqUncheckedCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryUncheckedCreateNestedManyWithoutUserInput No
categories CategoryUncheckedCreateNestedManyWithoutUserInput No
tags TagUncheckedCreateNestedManyWithoutUserInput No
support_tickets Support_TicketUncheckedCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageUncheckedCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutAssigned_userInput No
coupons CouponUncheckedCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodUncheckedCreateNestedManyWithoutUserInput No
team_members Team_MemberUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutAffiliatorsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutAffiliatorsInput | UserUncheckedCreateWithoutAffiliatorsInput No

Affiliator_Withdraw_RequestCreateWithoutAffiliatorInput

Name Type Nullable
uuid String No
status CommissionWithdrawStatus No
amount Decimal No
payment_method PaymentMethod No
payment_method_details JsonNullValueInput | Json No
note String | Null Yes
reject_reason String | Null Yes
created_at DateTime No
updated_at DateTime No
payment_method_detail User_Pament_MethodCreateNestedOneWithoutAffiliator_withdraw_requestsInput No
assigned_user UserCreateNestedOneWithoutAffiliator_withdraw_requestsInput No

Affiliator_Withdraw_RequestUncheckedCreateWithoutAffiliatorInput

Name Type Nullable
id Int No
uuid String No
status CommissionWithdrawStatus No
amount Decimal No
payment_method_id Int No
payment_method PaymentMethod No
payment_method_details JsonNullValueInput | Json No
assignee Int | Null Yes
note String | Null Yes
reject_reason String | Null Yes
created_at DateTime No
updated_at DateTime No

Affiliator_Withdraw_RequestCreateOrConnectWithoutAffiliatorInput

Name Type Nullable
where Affiliator_Withdraw_RequestWhereUniqueInput No
create Affiliator_Withdraw_RequestCreateWithoutAffiliatorInput | Affiliator_Withdraw_RequestUncheckedCreateWithoutAffiliatorInput No

Affiliator_Withdraw_RequestCreateManyAffiliatorInputEnvelope

Name Type Nullable
data Affiliator_Withdraw_RequestCreateManyAffiliatorInput | Affiliator_Withdraw_RequestCreateManyAffiliatorInput[] No
skipDuplicates Boolean No

Affiliator_CommissionCreateWithoutAffiliatorInput

Name Type Nullable
uuid String No
coupon_code String | Null Yes
order_amout Decimal | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
commission_type DiscountType No
commission_value Decimal No
amount Decimal No
status CommissionStatus No
created_at DateTime No
updated_at DateTime No
user UserCreateNestedOneWithoutAffiliator_commissionsInput No
order OrderCreateNestedOneWithoutAffiliator_commissionsInput No
shop ShopCreateNestedOneWithoutAffiliator_commissionsInput No
coupon CouponCreateNestedOneWithoutAffiliator_commissionsInput No

Affiliator_CommissionUncheckedCreateWithoutAffiliatorInput

Name Type Nullable
id Int No
uuid String No
user_id Int No
order_id Int | Null Yes
shop_id Int | Null Yes
coupon_id Int | Null Yes
coupon_code String | Null Yes
order_amout Decimal | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
commission_type DiscountType No
commission_value Decimal No
amount Decimal No
status CommissionStatus No
created_at DateTime No
updated_at DateTime No

Affiliator_CommissionCreateOrConnectWithoutAffiliatorInput

Name Type Nullable
where Affiliator_CommissionWhereUniqueInput No
create Affiliator_CommissionCreateWithoutAffiliatorInput | Affiliator_CommissionUncheckedCreateWithoutAffiliatorInput No

Affiliator_CommissionCreateManyAffiliatorInputEnvelope

Name Type Nullable
data Affiliator_CommissionCreateManyAffiliatorInput | Affiliator_CommissionCreateManyAffiliatorInput[] No
skipDuplicates Boolean No

CouponCreateWithoutAffiliatorInput

Name Type Nullable
code String No
status CouponStatus No
expired_at DateTime | Null Yes
max_total_applied Int | Null Yes
max_applied_by_shop Int | Null Yes
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
min_order_amount Decimal | Null Yes
max_discount_limit Decimal | Null Yes
is_apply_on_asset_discount Boolean | Null Yes
commission_type DiscountType | Null Yes
commission_value Decimal | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutCouponsInput No
orders OrderCreateNestedManyWithoutCouponInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutCouponInput No

CouponUncheckedCreateWithoutAffiliatorInput

Name Type Nullable
id Int No
code String No
status CouponStatus No
expired_at DateTime | Null Yes
max_total_applied Int | Null Yes
max_applied_by_shop Int | Null Yes
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
min_order_amount Decimal | Null Yes
max_discount_limit Decimal | Null Yes
is_apply_on_asset_discount Boolean | Null Yes
commission_type DiscountType | Null Yes
commission_value Decimal | Null Yes
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
orders OrderUncheckedCreateNestedManyWithoutCouponInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutCouponInput No

CouponCreateOrConnectWithoutAffiliatorInput

Name Type Nullable
where CouponWhereUniqueInput No
create CouponCreateWithoutAffiliatorInput | CouponUncheckedCreateWithoutAffiliatorInput No

CouponCreateManyAffiliatorInputEnvelope

Name Type Nullable
data CouponCreateManyAffiliatorInput | CouponCreateManyAffiliatorInput[] No
skipDuplicates Boolean No


UserUpdateWithoutAffiliatorsInput

Name Type Nullable
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUpdateManyWithoutUserNestedInput No
bundles BundleUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUpdateManyWithoutUserNestedInput No
elements ElementUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUpdateManyWithoutUserNestedInput No
faqs FaqUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUpdateManyWithoutUserNestedInput No
categories CategoryUpdateManyWithoutUserNestedInput No
tags TagUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUpdateManyWithoutUserNestedInput No
team_members Team_MemberUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutAffiliatorsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUncheckedUpdateManyWithoutUserNestedInput No
bundles BundleUncheckedUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUncheckedUpdateManyWithoutUserNestedInput No
elements ElementUncheckedUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUncheckedUpdateManyWithoutUserNestedInput No
faqs FaqUncheckedUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUncheckedUpdateManyWithoutUserNestedInput No
categories CategoryUncheckedUpdateManyWithoutUserNestedInput No
tags TagUncheckedUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUncheckedUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUncheckedUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUncheckedUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUncheckedUpdateManyWithoutUserNestedInput No
team_members Team_MemberUncheckedUpdateManyWithoutUserNestedInput No


Affiliator_Withdraw_RequestUpdateWithWhereUniqueWithoutAffiliatorInput

Name Type Nullable
where Affiliator_Withdraw_RequestWhereUniqueInput No
data Affiliator_Withdraw_RequestUpdateWithoutAffiliatorInput | Affiliator_Withdraw_RequestUncheckedUpdateWithoutAffiliatorInput No



Affiliator_CommissionUpdateWithWhereUniqueWithoutAffiliatorInput

Name Type Nullable
where Affiliator_CommissionWhereUniqueInput No
data Affiliator_CommissionUpdateWithoutAffiliatorInput | Affiliator_CommissionUncheckedUpdateWithoutAffiliatorInput No

Affiliator_CommissionUpdateManyWithWhereWithoutAffiliatorInput

Name Type Nullable
where Affiliator_CommissionScalarWhereInput No
data Affiliator_CommissionUpdateManyMutationInput | Affiliator_CommissionUncheckedUpdateManyWithoutAffiliator_commissionsInput No


CouponUpdateWithWhereUniqueWithoutAffiliatorInput

Name Type Nullable
where CouponWhereUniqueInput No
data CouponUpdateWithoutAffiliatorInput | CouponUncheckedUpdateWithoutAffiliatorInput No

CouponUpdateManyWithWhereWithoutAffiliatorInput

Name Type Nullable
where CouponScalarWhereInput No
data CouponUpdateManyMutationInput | CouponUncheckedUpdateManyWithoutCouponsInput No

AffiliatorCreateWithoutAffiliator_commissionsInput

Name Type Nullable
uuid String No
invited_by Int | Null Yes
type AffiliatorType No
type_other String | Null Yes
status AffiliatorStatus No
total_earned Decimal | Null Yes
total_paid Decimal | Null Yes
current_coupon_id Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutAffiliatorsInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestCreateNestedManyWithoutAffiliatorInput No
coupons CouponCreateNestedManyWithoutAffiliatorInput No

AffiliatorUncheckedCreateWithoutAffiliator_commissionsInput

Name Type Nullable
id Int No
uuid String No
user_id Int No
invited_by Int | Null Yes
type AffiliatorType No
type_other String | Null Yes
status AffiliatorStatus No
total_earned Decimal | Null Yes
total_paid Decimal | Null Yes
current_coupon_id Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutAffiliatorInput No
coupons CouponUncheckedCreateNestedManyWithoutAffiliatorInput No

AffiliatorCreateOrConnectWithoutAffiliator_commissionsInput

Name Type Nullable
where AffiliatorWhereUniqueInput No
create AffiliatorCreateWithoutAffiliator_commissionsInput | AffiliatorUncheckedCreateWithoutAffiliator_commissionsInput No

UserCreateWithoutAffiliator_commissionsInput

Name Type Nullable
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopCreateNestedManyWithoutUserInput No
bundles BundleCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementCreateNestedManyWithoutUserInput No
elements ElementCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanCreateNestedManyWithoutUserInput No
faqs FaqCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryCreateNestedManyWithoutUserInput No
categories CategoryCreateNestedManyWithoutUserInput No
tags TagCreateNestedManyWithoutUserInput No
support_tickets Support_TicketCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageCreateNestedManyWithoutUserInput No
affiliators AffiliatorCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput No
coupons CouponCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodCreateNestedManyWithoutUserInput No
team_members Team_MemberCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutAffiliator_commissionsInput

Name Type Nullable
id Int No
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopUncheckedCreateNestedManyWithoutUserInput No
bundles BundleUncheckedCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementUncheckedCreateNestedManyWithoutUserInput No
elements ElementUncheckedCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanUncheckedCreateNestedManyWithoutUserInput No
faqs FaqUncheckedCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryUncheckedCreateNestedManyWithoutUserInput No
categories CategoryUncheckedCreateNestedManyWithoutUserInput No
tags TagUncheckedCreateNestedManyWithoutUserInput No
support_tickets Support_TicketUncheckedCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageUncheckedCreateNestedManyWithoutUserInput No
affiliators AffiliatorUncheckedCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutAssigned_userInput No
coupons CouponUncheckedCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodUncheckedCreateNestedManyWithoutUserInput No
team_members Team_MemberUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutAffiliator_commissionsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutAffiliator_commissionsInput | UserUncheckedCreateWithoutAffiliator_commissionsInput No

OrderCreateWithoutAffiliator_commissionsInput

Name Type Nullable
uuid String No
asset_type AssetType No
status OrderStatus No
sub_total Decimal No
discounted_amout Decimal | Null Yes
coupon_code String | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
grand_total Decimal No
affiliated_by Int | Null Yes
affiliated_commission Decimal | Null Yes
created_at DateTime No
updated_at DateTime No
shop ShopCreateNestedOneWithoutOrdersInput No
coupon CouponCreateNestedOneWithoutOrdersInput No
order_items Order_ItemCreateNestedManyWithoutOrderInput No

OrderUncheckedCreateWithoutAffiliator_commissionsInput

Name Type Nullable
id Int No
uuid String No
shop_id Int No
asset_type AssetType No
status OrderStatus No
sub_total Decimal No
discounted_amout Decimal | Null Yes
coupon_id Int | Null Yes
coupon_code String | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
grand_total Decimal No
affiliated_by Int | Null Yes
affiliated_commission Decimal | Null Yes
created_at DateTime No
updated_at DateTime No
order_items Order_ItemUncheckedCreateNestedManyWithoutOrderInput No

OrderCreateOrConnectWithoutAffiliator_commissionsInput

Name Type Nullable
where OrderWhereUniqueInput No
create OrderCreateWithoutAffiliator_commissionsInput | OrderUncheckedCreateWithoutAffiliator_commissionsInput No

ShopCreateWithoutAffiliator_commissionsInput

Name Type Nullable
uuid String No
shopify_shop_id Int No
name String No
domain String No
status ShopStatus No
created_at DateTime No
updated_at DateTime No
user UserCreateNestedOneWithoutShopsInput No
current_subscription Shop_SubscriptionCreateNestedOneWithoutShopsInput No
orders OrderCreateNestedManyWithoutShopInput No
bookmarked_elements BookmarkCreateNestedManyWithoutShopInput No
wishlisted_elements WishlistCreateNestedManyWithoutShopInput No
recent_used_elements Recent_Used_ElementCreateNestedManyWithoutShopInput No

ShopUncheckedCreateWithoutAffiliator_commissionsInput

Name Type Nullable
id Int No
uuid String No
user_id Int No
shopify_shop_id Int No
name String No
domain String No
status ShopStatus No
subscription_id Int | Null Yes
created_at DateTime No
updated_at DateTime No
orders OrderUncheckedCreateNestedManyWithoutShopInput No
bookmarked_elements BookmarkUncheckedCreateNestedManyWithoutShopInput No
wishlisted_elements WishlistUncheckedCreateNestedManyWithoutShopInput No
recent_used_elements Recent_Used_ElementUncheckedCreateNestedManyWithoutShopInput No

ShopCreateOrConnectWithoutAffiliator_commissionsInput

Name Type Nullable
where ShopWhereUniqueInput No
create ShopCreateWithoutAffiliator_commissionsInput | ShopUncheckedCreateWithoutAffiliator_commissionsInput No

CouponCreateWithoutAffiliator_commissionsInput

Name Type Nullable
code String No
status CouponStatus No
expired_at DateTime | Null Yes
max_total_applied Int | Null Yes
max_applied_by_shop Int | Null Yes
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
min_order_amount Decimal | Null Yes
max_discount_limit Decimal | Null Yes
is_apply_on_asset_discount Boolean | Null Yes
commission_type DiscountType | Null Yes
commission_value Decimal | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
affiliator AffiliatorCreateNestedOneWithoutCouponsInput No
user UserCreateNestedOneWithoutCouponsInput No
orders OrderCreateNestedManyWithoutCouponInput No

CouponUncheckedCreateWithoutAffiliator_commissionsInput

Name Type Nullable
id Int No
code String No
status CouponStatus No
expired_at DateTime | Null Yes
max_total_applied Int | Null Yes
max_applied_by_shop Int | Null Yes
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
min_order_amount Decimal | Null Yes
max_discount_limit Decimal | Null Yes
is_apply_on_asset_discount Boolean | Null Yes
affiliated_by Int | Null Yes
commission_type DiscountType | Null Yes
commission_value Decimal | Null Yes
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
orders OrderUncheckedCreateNestedManyWithoutCouponInput No

CouponCreateOrConnectWithoutAffiliator_commissionsInput

Name Type Nullable
where CouponWhereUniqueInput No
create CouponCreateWithoutAffiliator_commissionsInput | CouponUncheckedCreateWithoutAffiliator_commissionsInput No


AffiliatorUpdateWithoutAffiliator_commissionsInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
invited_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
type AffiliatorType | EnumAffiliatorTypeFieldUpdateOperationsInput No
type_other String | NullableStringFieldUpdateOperationsInput | Null Yes
status AffiliatorStatus | EnumAffiliatorStatusFieldUpdateOperationsInput No
total_earned Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
total_paid Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
current_coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutAffiliatorsNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUpdateManyWithoutAffiliatorNestedInput No
coupons CouponUpdateManyWithoutAffiliatorNestedInput No

AffiliatorUncheckedUpdateWithoutAffiliator_commissionsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
invited_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
type AffiliatorType | EnumAffiliatorTypeFieldUpdateOperationsInput No
type_other String | NullableStringFieldUpdateOperationsInput | Null Yes
status AffiliatorStatus | EnumAffiliatorStatusFieldUpdateOperationsInput No
total_earned Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
total_paid Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
current_coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutAffiliatorNestedInput No
coupons CouponUncheckedUpdateManyWithoutAffiliatorNestedInput No


UserUpdateWithoutAffiliator_commissionsInput

Name Type Nullable
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUpdateManyWithoutUserNestedInput No
bundles BundleUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUpdateManyWithoutUserNestedInput No
elements ElementUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUpdateManyWithoutUserNestedInput No
faqs FaqUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUpdateManyWithoutUserNestedInput No
categories CategoryUpdateManyWithoutUserNestedInput No
tags TagUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUpdateManyWithoutUserNestedInput No
team_members Team_MemberUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutAffiliator_commissionsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUncheckedUpdateManyWithoutUserNestedInput No
bundles BundleUncheckedUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUncheckedUpdateManyWithoutUserNestedInput No
elements ElementUncheckedUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUncheckedUpdateManyWithoutUserNestedInput No
faqs FaqUncheckedUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUncheckedUpdateManyWithoutUserNestedInput No
categories CategoryUncheckedUpdateManyWithoutUserNestedInput No
tags TagUncheckedUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUncheckedUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUncheckedUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUncheckedUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUncheckedUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUncheckedUpdateManyWithoutUserNestedInput No
team_members Team_MemberUncheckedUpdateManyWithoutUserNestedInput No


OrderUpdateWithoutAffiliator_commissionsInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
asset_type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
status OrderStatus | EnumOrderStatusFieldUpdateOperationsInput No
sub_total Decimal | DecimalFieldUpdateOperationsInput No
discounted_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
grand_total Decimal | DecimalFieldUpdateOperationsInput No
affiliated_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
affiliated_commission Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
shop ShopUpdateOneWithoutOrdersNestedInput No
coupon CouponUpdateOneWithoutOrdersNestedInput No
order_items Order_ItemUpdateManyWithoutOrderNestedInput No

OrderUncheckedUpdateWithoutAffiliator_commissionsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
shop_id Int | IntFieldUpdateOperationsInput No
asset_type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
status OrderStatus | EnumOrderStatusFieldUpdateOperationsInput No
sub_total Decimal | DecimalFieldUpdateOperationsInput No
discounted_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
grand_total Decimal | DecimalFieldUpdateOperationsInput No
affiliated_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
affiliated_commission Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
order_items Order_ItemUncheckedUpdateManyWithoutOrderNestedInput No


ShopUpdateWithoutAffiliator_commissionsInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
shopify_shop_id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
domain String | StringFieldUpdateOperationsInput No
status ShopStatus | EnumShopStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneWithoutShopsNestedInput No
current_subscription Shop_SubscriptionUpdateOneWithoutShopsNestedInput No
orders OrderUpdateManyWithoutShopNestedInput No
bookmarked_elements BookmarkUpdateManyWithoutShopNestedInput No
wishlisted_elements WishlistUpdateManyWithoutShopNestedInput No
recent_used_elements Recent_Used_ElementUpdateManyWithoutShopNestedInput No

ShopUncheckedUpdateWithoutAffiliator_commissionsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
shopify_shop_id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
domain String | StringFieldUpdateOperationsInput No
status ShopStatus | EnumShopStatusFieldUpdateOperationsInput No
subscription_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
orders OrderUncheckedUpdateManyWithoutShopNestedInput No
bookmarked_elements BookmarkUncheckedUpdateManyWithoutShopNestedInput No
wishlisted_elements WishlistUncheckedUpdateManyWithoutShopNestedInput No
recent_used_elements Recent_Used_ElementUncheckedUpdateManyWithoutShopNestedInput No


CouponUpdateWithoutAffiliator_commissionsInput

Name Type Nullable
code String | StringFieldUpdateOperationsInput No
status CouponStatus | EnumCouponStatusFieldUpdateOperationsInput No
expired_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
max_total_applied Int | NullableIntFieldUpdateOperationsInput | Null Yes
max_applied_by_shop Int | NullableIntFieldUpdateOperationsInput | Null Yes
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
min_order_amount Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
max_discount_limit Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
is_apply_on_asset_discount Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
commission_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
affiliator AffiliatorUpdateOneWithoutCouponsNestedInput No
user UserUpdateOneWithoutCouponsNestedInput No
orders OrderUpdateManyWithoutCouponNestedInput No

CouponUncheckedUpdateWithoutAffiliator_commissionsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
status CouponStatus | EnumCouponStatusFieldUpdateOperationsInput No
expired_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
max_total_applied Int | NullableIntFieldUpdateOperationsInput | Null Yes
max_applied_by_shop Int | NullableIntFieldUpdateOperationsInput | Null Yes
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
min_order_amount Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
max_discount_limit Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
is_apply_on_asset_discount Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
affiliated_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
commission_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
orders OrderUncheckedUpdateManyWithoutCouponNestedInput No

AffiliatorCreateWithoutAffiliator_withdraw_requestsInput

Name Type Nullable
uuid String No
invited_by Int | Null Yes
type AffiliatorType No
type_other String | Null Yes
status AffiliatorStatus No
total_earned Decimal | Null Yes
total_paid Decimal | Null Yes
current_coupon_id Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutAffiliatorsInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutAffiliatorInput No
coupons CouponCreateNestedManyWithoutAffiliatorInput No

AffiliatorUncheckedCreateWithoutAffiliator_withdraw_requestsInput

Name Type Nullable
id Int No
uuid String No
user_id Int No
invited_by Int | Null Yes
type AffiliatorType No
type_other String | Null Yes
status AffiliatorStatus No
total_earned Decimal | Null Yes
total_paid Decimal | Null Yes
current_coupon_id Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutAffiliatorInput No
coupons CouponUncheckedCreateNestedManyWithoutAffiliatorInput No

AffiliatorCreateOrConnectWithoutAffiliator_withdraw_requestsInput

Name Type Nullable
where AffiliatorWhereUniqueInput No
create AffiliatorCreateWithoutAffiliator_withdraw_requestsInput | AffiliatorUncheckedCreateWithoutAffiliator_withdraw_requestsInput No

User_Pament_MethodCreateWithoutAffiliator_withdraw_requestsInput

Name Type Nullable
method PaymentMethod No
details JsonNullValueInput | Json No
is_default Boolean No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
user UserCreateNestedOneWithoutUser_pament_methodsInput No

User_Pament_MethodUncheckedCreateWithoutAffiliator_withdraw_requestsInput

Name Type Nullable
id Int No
user_id Int No
method PaymentMethod No
details JsonNullValueInput | Json No
is_default Boolean No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes

User_Pament_MethodCreateOrConnectWithoutAffiliator_withdraw_requestsInput

Name Type Nullable
where User_Pament_MethodWhereUniqueInput No
create User_Pament_MethodCreateWithoutAffiliator_withdraw_requestsInput | User_Pament_MethodUncheckedCreateWithoutAffiliator_withdraw_requestsInput No

UserCreateWithoutAffiliator_withdraw_requestsInput

Name Type Nullable
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopCreateNestedManyWithoutUserInput No
bundles BundleCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementCreateNestedManyWithoutUserInput No
elements ElementCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanCreateNestedManyWithoutUserInput No
faqs FaqCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryCreateNestedManyWithoutUserInput No
categories CategoryCreateNestedManyWithoutUserInput No
tags TagCreateNestedManyWithoutUserInput No
support_tickets Support_TicketCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageCreateNestedManyWithoutUserInput No
affiliators AffiliatorCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutUserInput No
coupons CouponCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodCreateNestedManyWithoutUserInput No
team_members Team_MemberCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutAffiliator_withdraw_requestsInput

Name Type Nullable
id Int No
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopUncheckedCreateNestedManyWithoutUserInput No
bundles BundleUncheckedCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementUncheckedCreateNestedManyWithoutUserInput No
elements ElementUncheckedCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanUncheckedCreateNestedManyWithoutUserInput No
faqs FaqUncheckedCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryUncheckedCreateNestedManyWithoutUserInput No
categories CategoryUncheckedCreateNestedManyWithoutUserInput No
tags TagUncheckedCreateNestedManyWithoutUserInput No
support_tickets Support_TicketUncheckedCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageUncheckedCreateNestedManyWithoutUserInput No
affiliators AffiliatorUncheckedCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutUserInput No
coupons CouponUncheckedCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodUncheckedCreateNestedManyWithoutUserInput No
team_members Team_MemberUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutAffiliator_withdraw_requestsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutAffiliator_withdraw_requestsInput | UserUncheckedCreateWithoutAffiliator_withdraw_requestsInput No


AffiliatorUpdateWithoutAffiliator_withdraw_requestsInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
invited_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
type AffiliatorType | EnumAffiliatorTypeFieldUpdateOperationsInput No
type_other String | NullableStringFieldUpdateOperationsInput | Null Yes
status AffiliatorStatus | EnumAffiliatorStatusFieldUpdateOperationsInput No
total_earned Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
total_paid Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
current_coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutAffiliatorsNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutAffiliatorNestedInput No
coupons CouponUpdateManyWithoutAffiliatorNestedInput No

AffiliatorUncheckedUpdateWithoutAffiliator_withdraw_requestsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
invited_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
type AffiliatorType | EnumAffiliatorTypeFieldUpdateOperationsInput No
type_other String | NullableStringFieldUpdateOperationsInput | Null Yes
status AffiliatorStatus | EnumAffiliatorStatusFieldUpdateOperationsInput No
total_earned Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
total_paid Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
current_coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutAffiliatorNestedInput No
coupons CouponUncheckedUpdateManyWithoutAffiliatorNestedInput No


User_Pament_MethodUpdateWithoutAffiliator_withdraw_requestsInput

Name Type Nullable
method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
details JsonNullValueInput | Json No
is_default Boolean | BoolFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutUser_pament_methodsNestedInput No

User_Pament_MethodUncheckedUpdateWithoutAffiliator_withdraw_requestsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
details JsonNullValueInput | Json No
is_default Boolean | BoolFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes


UserUpdateWithoutAffiliator_withdraw_requestsInput

Name Type Nullable
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUpdateManyWithoutUserNestedInput No
bundles BundleUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUpdateManyWithoutUserNestedInput No
elements ElementUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUpdateManyWithoutUserNestedInput No
faqs FaqUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUpdateManyWithoutUserNestedInput No
categories CategoryUpdateManyWithoutUserNestedInput No
tags TagUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutUserNestedInput No
coupons CouponUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUpdateManyWithoutUserNestedInput No
team_members Team_MemberUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutAffiliator_withdraw_requestsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUncheckedUpdateManyWithoutUserNestedInput No
bundles BundleUncheckedUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUncheckedUpdateManyWithoutUserNestedInput No
elements ElementUncheckedUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUncheckedUpdateManyWithoutUserNestedInput No
faqs FaqUncheckedUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUncheckedUpdateManyWithoutUserNestedInput No
categories CategoryUncheckedUpdateManyWithoutUserNestedInput No
tags TagUncheckedUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUncheckedUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUncheckedUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUncheckedUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutUserNestedInput No
coupons CouponUncheckedUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUncheckedUpdateManyWithoutUserNestedInput No
team_members Team_MemberUncheckedUpdateManyWithoutUserNestedInput No

UserCreateWithoutUser_pament_methodsInput

Name Type Nullable
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopCreateNestedManyWithoutUserInput No
bundles BundleCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementCreateNestedManyWithoutUserInput No
elements ElementCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanCreateNestedManyWithoutUserInput No
faqs FaqCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryCreateNestedManyWithoutUserInput No
categories CategoryCreateNestedManyWithoutUserInput No
tags TagCreateNestedManyWithoutUserInput No
support_tickets Support_TicketCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageCreateNestedManyWithoutUserInput No
affiliators AffiliatorCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput No
coupons CouponCreateNestedManyWithoutUserInput No
team_members Team_MemberCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutUser_pament_methodsInput

Name Type Nullable
id Int No
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopUncheckedCreateNestedManyWithoutUserInput No
bundles BundleUncheckedCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementUncheckedCreateNestedManyWithoutUserInput No
elements ElementUncheckedCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanUncheckedCreateNestedManyWithoutUserInput No
faqs FaqUncheckedCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryUncheckedCreateNestedManyWithoutUserInput No
categories CategoryUncheckedCreateNestedManyWithoutUserInput No
tags TagUncheckedCreateNestedManyWithoutUserInput No
support_tickets Support_TicketUncheckedCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageUncheckedCreateNestedManyWithoutUserInput No
affiliators AffiliatorUncheckedCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutAssigned_userInput No
coupons CouponUncheckedCreateNestedManyWithoutUserInput No
team_members Team_MemberUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutUser_pament_methodsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutUser_pament_methodsInput | UserUncheckedCreateWithoutUser_pament_methodsInput No

Affiliator_Withdraw_RequestCreateWithoutPayment_method_detailInput

Name Type Nullable
uuid String No
status CommissionWithdrawStatus No
amount Decimal No
payment_method PaymentMethod No
payment_method_details JsonNullValueInput | Json No
note String | Null Yes
reject_reason String | Null Yes
created_at DateTime No
updated_at DateTime No
affiliator AffiliatorCreateNestedOneWithoutAffiliator_withdraw_requestsInput No
assigned_user UserCreateNestedOneWithoutAffiliator_withdraw_requestsInput No

Affiliator_Withdraw_RequestUncheckedCreateWithoutPayment_method_detailInput

Name Type Nullable
id Int No
uuid String No
affiliator_id Int No
status CommissionWithdrawStatus No
amount Decimal No
payment_method PaymentMethod No
payment_method_details JsonNullValueInput | Json No
assignee Int | Null Yes
note String | Null Yes
reject_reason String | Null Yes
created_at DateTime No
updated_at DateTime No


Affiliator_Withdraw_RequestCreateManyPayment_method_detailInputEnvelope

Name Type Nullable
data Affiliator_Withdraw_RequestCreateManyPayment_method_detailInput | Affiliator_Withdraw_RequestCreateManyPayment_method_detailInput[] No
skipDuplicates Boolean No


UserUpdateWithoutUser_pament_methodsInput

Name Type Nullable
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUpdateManyWithoutUserNestedInput No
bundles BundleUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUpdateManyWithoutUserNestedInput No
elements ElementUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUpdateManyWithoutUserNestedInput No
faqs FaqUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUpdateManyWithoutUserNestedInput No
categories CategoryUpdateManyWithoutUserNestedInput No
tags TagUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUpdateManyWithoutUserNestedInput No
team_members Team_MemberUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutUser_pament_methodsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUncheckedUpdateManyWithoutUserNestedInput No
bundles BundleUncheckedUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUncheckedUpdateManyWithoutUserNestedInput No
elements ElementUncheckedUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUncheckedUpdateManyWithoutUserNestedInput No
faqs FaqUncheckedUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUncheckedUpdateManyWithoutUserNestedInput No
categories CategoryUncheckedUpdateManyWithoutUserNestedInput No
tags TagUncheckedUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUncheckedUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUncheckedUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUncheckedUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUncheckedUpdateManyWithoutUserNestedInput No
team_members Team_MemberUncheckedUpdateManyWithoutUserNestedInput No


Affiliator_Withdraw_RequestUpdateWithWhereUniqueWithoutPayment_method_detailInput

Name Type Nullable
where Affiliator_Withdraw_RequestWhereUniqueInput No
data Affiliator_Withdraw_RequestUpdateWithoutPayment_method_detailInput | Affiliator_Withdraw_RequestUncheckedUpdateWithoutPayment_method_detailInput No

Affiliator_Withdraw_RequestUpdateManyWithWhereWithoutPayment_method_detailInput

Name Type Nullable
where Affiliator_Withdraw_RequestScalarWhereInput No
data Affiliator_Withdraw_RequestUpdateManyMutationInput | Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutAffiliator_withdraw_requestsInput No

UserCreateWithoutPricing_plansInput

Name Type Nullable
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopCreateNestedManyWithoutUserInput No
bundles BundleCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementCreateNestedManyWithoutUserInput No
elements ElementCreateNestedManyWithoutUserInput No
faqs FaqCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryCreateNestedManyWithoutUserInput No
categories CategoryCreateNestedManyWithoutUserInput No
tags TagCreateNestedManyWithoutUserInput No
support_tickets Support_TicketCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageCreateNestedManyWithoutUserInput No
affiliators AffiliatorCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput No
coupons CouponCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodCreateNestedManyWithoutUserInput No
team_members Team_MemberCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutPricing_plansInput

Name Type Nullable
id Int No
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopUncheckedCreateNestedManyWithoutUserInput No
bundles BundleUncheckedCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementUncheckedCreateNestedManyWithoutUserInput No
elements ElementUncheckedCreateNestedManyWithoutUserInput No
faqs FaqUncheckedCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryUncheckedCreateNestedManyWithoutUserInput No
categories CategoryUncheckedCreateNestedManyWithoutUserInput No
tags TagUncheckedCreateNestedManyWithoutUserInput No
support_tickets Support_TicketUncheckedCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageUncheckedCreateNestedManyWithoutUserInput No
affiliators AffiliatorUncheckedCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutAssigned_userInput No
coupons CouponUncheckedCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodUncheckedCreateNestedManyWithoutUserInput No
team_members Team_MemberUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutPricing_plansInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutPricing_plansInput | UserUncheckedCreateWithoutPricing_plansInput No

Shop_SubscriptionCreateWithoutPlanInput

Name Type Nullable
uuid String No
shop_id Int No
plan_type PricingPlanType No
status SubscriptionStatus No
created_at DateTime No
ended_at DateTime | Null Yes
ended_type SubscriptionEndedType | Null Yes
updated_at DateTime No
amount Decimal No
payment_method PaymentMethod No
shops ShopCreateNestedManyWithoutCurrent_subscriptionInput No

Shop_SubscriptionUncheckedCreateWithoutPlanInput

Name Type Nullable
id Int No
uuid String No
shop_id Int No
plan_type PricingPlanType No
status SubscriptionStatus No
created_at DateTime No
ended_at DateTime | Null Yes
ended_type SubscriptionEndedType | Null Yes
updated_at DateTime No
amount Decimal No
payment_method PaymentMethod No
shops ShopUncheckedCreateNestedManyWithoutCurrent_subscriptionInput No

Shop_SubscriptionCreateOrConnectWithoutPlanInput

Name Type Nullable
where Shop_SubscriptionWhereUniqueInput No
create Shop_SubscriptionCreateWithoutPlanInput | Shop_SubscriptionUncheckedCreateWithoutPlanInput No

Shop_SubscriptionCreateManyPlanInputEnvelope

Name Type Nullable
data Shop_SubscriptionCreateManyPlanInput | Shop_SubscriptionCreateManyPlanInput[] No
skipDuplicates Boolean No

Pricing_Plan_FeatureCreateWithoutPricing_planInput

Name Type Nullable
title String No
type String | Null Yes
description String | Null Yes

Pricing_Plan_FeatureUncheckedCreateWithoutPricing_planInput

Name Type Nullable
id Int No
title String No
type String | Null Yes
description String | Null Yes

Pricing_Plan_FeatureCreateOrConnectWithoutPricing_planInput

Name Type Nullable
where Pricing_Plan_FeatureWhereUniqueInput No
create Pricing_Plan_FeatureCreateWithoutPricing_planInput | Pricing_Plan_FeatureUncheckedCreateWithoutPricing_planInput No

Pricing_Plan_FeatureCreateManyPricing_planInputEnvelope

Name Type Nullable
data Pricing_Plan_FeatureCreateManyPricing_planInput | Pricing_Plan_FeatureCreateManyPricing_planInput[] No
skipDuplicates Boolean No


UserUpdateWithoutPricing_plansInput

Name Type Nullable
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUpdateManyWithoutUserNestedInput No
bundles BundleUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUpdateManyWithoutUserNestedInput No
elements ElementUpdateManyWithoutUserNestedInput No
faqs FaqUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUpdateManyWithoutUserNestedInput No
categories CategoryUpdateManyWithoutUserNestedInput No
tags TagUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUpdateManyWithoutUserNestedInput No
team_members Team_MemberUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutPricing_plansInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUncheckedUpdateManyWithoutUserNestedInput No
bundles BundleUncheckedUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUncheckedUpdateManyWithoutUserNestedInput No
elements ElementUncheckedUpdateManyWithoutUserNestedInput No
faqs FaqUncheckedUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUncheckedUpdateManyWithoutUserNestedInput No
categories CategoryUncheckedUpdateManyWithoutUserNestedInput No
tags TagUncheckedUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUncheckedUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUncheckedUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUncheckedUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUncheckedUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUncheckedUpdateManyWithoutUserNestedInput No
team_members Team_MemberUncheckedUpdateManyWithoutUserNestedInput No


Shop_SubscriptionUpdateWithWhereUniqueWithoutPlanInput

Name Type Nullable
where Shop_SubscriptionWhereUniqueInput No
data Shop_SubscriptionUpdateWithoutPlanInput | Shop_SubscriptionUncheckedUpdateWithoutPlanInput No

Shop_SubscriptionUpdateManyWithWhereWithoutPlanInput

Name Type Nullable
where Shop_SubscriptionScalarWhereInput No
data Shop_SubscriptionUpdateManyMutationInput | Shop_SubscriptionUncheckedUpdateManyWithoutSubscriptionsInput No

Shop_SubscriptionScalarWhereInput

Name Type Nullable
AND Shop_SubscriptionScalarWhereInput | Shop_SubscriptionScalarWhereInput[] No
OR Shop_SubscriptionScalarWhereInput[] No
NOT Shop_SubscriptionScalarWhereInput | Shop_SubscriptionScalarWhereInput[] No
id IntFilter | Int No
uuid StringFilter | String No
shop_id IntFilter | Int No
plan_id IntFilter | Int No
plan_type EnumPricingPlanTypeFilter | PricingPlanType No
status EnumSubscriptionStatusFilter | SubscriptionStatus No
created_at DateTimeFilter | DateTime No
ended_at DateTimeNullableFilter | DateTime | Null Yes
ended_type EnumSubscriptionEndedTypeNullableFilter | SubscriptionEndedType | Null Yes
updated_at DateTimeFilter | DateTime No
amount DecimalFilter | Decimal No
payment_method EnumPaymentMethodFilter | PaymentMethod No


Pricing_Plan_FeatureUpdateWithWhereUniqueWithoutPricing_planInput

Name Type Nullable
where Pricing_Plan_FeatureWhereUniqueInput No
data Pricing_Plan_FeatureUpdateWithoutPricing_planInput | Pricing_Plan_FeatureUncheckedUpdateWithoutPricing_planInput No

Pricing_Plan_FeatureUpdateManyWithWhereWithoutPricing_planInput

Name Type Nullable
where Pricing_Plan_FeatureScalarWhereInput No
data Pricing_Plan_FeatureUpdateManyMutationInput | Pricing_Plan_FeatureUncheckedUpdateManyWithoutPricing_plan_featuresInput No

Pricing_Plan_FeatureScalarWhereInput

Name Type Nullable
AND Pricing_Plan_FeatureScalarWhereInput | Pricing_Plan_FeatureScalarWhereInput[] No
OR Pricing_Plan_FeatureScalarWhereInput[] No
NOT Pricing_Plan_FeatureScalarWhereInput | Pricing_Plan_FeatureScalarWhereInput[] No
id IntFilter | Int No
plan_id IntFilter | Int No
title StringFilter | String No
type StringNullableFilter | String | Null Yes
description StringNullableFilter | String | Null Yes

Pricing_PlanCreateWithoutPricing_plan_featuresInput

Name Type Nullable
name String No
tagline String No
description String No
type PricingPlanType No
is_recommended Boolean No
is_popular Boolean No
price Decimal No
discounted_price Decimal | Null Yes
yearly_discounted_price Decimal | Null Yes
trial_period Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutPricing_plansInput No
subscriptions Shop_SubscriptionCreateNestedManyWithoutPlanInput No

Pricing_PlanUncheckedCreateWithoutPricing_plan_featuresInput

Name Type Nullable
id Int No
name String No
tagline String No
description String No
type PricingPlanType No
is_recommended Boolean No
is_popular Boolean No
price Decimal No
discounted_price Decimal | Null Yes
yearly_discounted_price Decimal | Null Yes
trial_period Int | Null Yes
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
subscriptions Shop_SubscriptionUncheckedCreateNestedManyWithoutPlanInput No

Pricing_PlanCreateOrConnectWithoutPricing_plan_featuresInput

Name Type Nullable
where Pricing_PlanWhereUniqueInput No
create Pricing_PlanCreateWithoutPricing_plan_featuresInput | Pricing_PlanUncheckedCreateWithoutPricing_plan_featuresInput No


Pricing_PlanUpdateWithoutPricing_plan_featuresInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
tagline String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
type PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput No
is_recommended Boolean | BoolFieldUpdateOperationsInput No
is_popular Boolean | BoolFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
yearly_discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
trial_period Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutPricing_plansNestedInput No
subscriptions Shop_SubscriptionUpdateManyWithoutPlanNestedInput No

Pricing_PlanUncheckedUpdateWithoutPricing_plan_featuresInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
tagline String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
type PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput No
is_recommended Boolean | BoolFieldUpdateOperationsInput No
is_popular Boolean | BoolFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
yearly_discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
trial_period Int | NullableIntFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
subscriptions Shop_SubscriptionUncheckedUpdateManyWithoutPlanNestedInput No

Pricing_PlanCreateWithoutSubscriptionsInput

Name Type Nullable
name String No
tagline String No
description String No
type PricingPlanType No
is_recommended Boolean No
is_popular Boolean No
price Decimal No
discounted_price Decimal | Null Yes
yearly_discounted_price Decimal | Null Yes
trial_period Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutPricing_plansInput No
pricing_plan_features Pricing_Plan_FeatureCreateNestedManyWithoutPricing_planInput No

Pricing_PlanUncheckedCreateWithoutSubscriptionsInput

Name Type Nullable
id Int No
name String No
tagline String No
description String No
type PricingPlanType No
is_recommended Boolean No
is_popular Boolean No
price Decimal No
discounted_price Decimal | Null Yes
yearly_discounted_price Decimal | Null Yes
trial_period Int | Null Yes
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
pricing_plan_features Pricing_Plan_FeatureUncheckedCreateNestedManyWithoutPricing_planInput No

Pricing_PlanCreateOrConnectWithoutSubscriptionsInput

Name Type Nullable
where Pricing_PlanWhereUniqueInput No
create Pricing_PlanCreateWithoutSubscriptionsInput | Pricing_PlanUncheckedCreateWithoutSubscriptionsInput No

ShopCreateWithoutCurrent_subscriptionInput

Name Type Nullable
uuid String No
shopify_shop_id Int No
name String No
domain String No
status ShopStatus No
created_at DateTime No
updated_at DateTime No
user UserCreateNestedOneWithoutShopsInput No
orders OrderCreateNestedManyWithoutShopInput No
bookmarked_elements BookmarkCreateNestedManyWithoutShopInput No
wishlisted_elements WishlistCreateNestedManyWithoutShopInput No
recent_used_elements Recent_Used_ElementCreateNestedManyWithoutShopInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutShopInput No

ShopUncheckedCreateWithoutCurrent_subscriptionInput

Name Type Nullable
id Int No
uuid String No
user_id Int No
shopify_shop_id Int No
name String No
domain String No
status ShopStatus No
created_at DateTime No
updated_at DateTime No
orders OrderUncheckedCreateNestedManyWithoutShopInput No
bookmarked_elements BookmarkUncheckedCreateNestedManyWithoutShopInput No
wishlisted_elements WishlistUncheckedCreateNestedManyWithoutShopInput No
recent_used_elements Recent_Used_ElementUncheckedCreateNestedManyWithoutShopInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutShopInput No

ShopCreateOrConnectWithoutCurrent_subscriptionInput

Name Type Nullable
where ShopWhereUniqueInput No
create ShopCreateWithoutCurrent_subscriptionInput | ShopUncheckedCreateWithoutCurrent_subscriptionInput No

ShopCreateManyCurrent_subscriptionInputEnvelope

Name Type Nullable
data ShopCreateManyCurrent_subscriptionInput | ShopCreateManyCurrent_subscriptionInput[] No
skipDuplicates Boolean No


Pricing_PlanUpdateWithoutSubscriptionsInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
tagline String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
type PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput No
is_recommended Boolean | BoolFieldUpdateOperationsInput No
is_popular Boolean | BoolFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
yearly_discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
trial_period Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutPricing_plansNestedInput No
pricing_plan_features Pricing_Plan_FeatureUpdateManyWithoutPricing_planNestedInput No

Pricing_PlanUncheckedUpdateWithoutSubscriptionsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
tagline String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
type PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput No
is_recommended Boolean | BoolFieldUpdateOperationsInput No
is_popular Boolean | BoolFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
yearly_discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
trial_period Int | NullableIntFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
pricing_plan_features Pricing_Plan_FeatureUncheckedUpdateManyWithoutPricing_planNestedInput No


ShopUpdateWithWhereUniqueWithoutCurrent_subscriptionInput

Name Type Nullable
where ShopWhereUniqueInput No
data ShopUpdateWithoutCurrent_subscriptionInput | ShopUncheckedUpdateWithoutCurrent_subscriptionInput No

ShopUpdateManyWithWhereWithoutCurrent_subscriptionInput

Name Type Nullable
where ShopScalarWhereInput No
data ShopUpdateManyMutationInput | ShopUncheckedUpdateManyWithoutShopsInput No

UserCreateWithoutFaqsInput

Name Type Nullable
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopCreateNestedManyWithoutUserInput No
bundles BundleCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementCreateNestedManyWithoutUserInput No
elements ElementCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryCreateNestedManyWithoutUserInput No
categories CategoryCreateNestedManyWithoutUserInput No
tags TagCreateNestedManyWithoutUserInput No
support_tickets Support_TicketCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageCreateNestedManyWithoutUserInput No
affiliators AffiliatorCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput No
coupons CouponCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodCreateNestedManyWithoutUserInput No
team_members Team_MemberCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutFaqsInput

Name Type Nullable
id Int No
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopUncheckedCreateNestedManyWithoutUserInput No
bundles BundleUncheckedCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementUncheckedCreateNestedManyWithoutUserInput No
elements ElementUncheckedCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanUncheckedCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryUncheckedCreateNestedManyWithoutUserInput No
categories CategoryUncheckedCreateNestedManyWithoutUserInput No
tags TagUncheckedCreateNestedManyWithoutUserInput No
support_tickets Support_TicketUncheckedCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageUncheckedCreateNestedManyWithoutUserInput No
affiliators AffiliatorUncheckedCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutAssigned_userInput No
coupons CouponUncheckedCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodUncheckedCreateNestedManyWithoutUserInput No
team_members Team_MemberUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutFaqsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutFaqsInput | UserUncheckedCreateWithoutFaqsInput No

Faq_CategoryCreateWithoutFaqsInput

Name Type Nullable
name String No
description String | Null Yes
banner String | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutFaq_categoriesInput No

Faq_CategoryUncheckedCreateWithoutFaqsInput

Name Type Nullable
id Int No
name String No
user_id Int No
description String | Null Yes
banner String | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

Faq_CategoryCreateOrConnectWithoutFaqsInput

Name Type Nullable
where Faq_CategoryWhereUniqueInput No
create Faq_CategoryCreateWithoutFaqsInput | Faq_CategoryUncheckedCreateWithoutFaqsInput No


UserUpdateWithoutFaqsInput

Name Type Nullable
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUpdateManyWithoutUserNestedInput No
bundles BundleUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUpdateManyWithoutUserNestedInput No
elements ElementUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUpdateManyWithoutUserNestedInput No
categories CategoryUpdateManyWithoutUserNestedInput No
tags TagUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUpdateManyWithoutUserNestedInput No
team_members Team_MemberUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutFaqsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUncheckedUpdateManyWithoutUserNestedInput No
bundles BundleUncheckedUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUncheckedUpdateManyWithoutUserNestedInput No
elements ElementUncheckedUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUncheckedUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUncheckedUpdateManyWithoutUserNestedInput No
categories CategoryUncheckedUpdateManyWithoutUserNestedInput No
tags TagUncheckedUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUncheckedUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUncheckedUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUncheckedUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUncheckedUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUncheckedUpdateManyWithoutUserNestedInput No
team_members Team_MemberUncheckedUpdateManyWithoutUserNestedInput No


Faq_CategoryUpdateWithoutFaqsInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutFaq_categoriesNestedInput No

Faq_CategoryUncheckedUpdateWithoutFaqsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

UserCreateWithoutFaq_categoriesInput

Name Type Nullable
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopCreateNestedManyWithoutUserInput No
bundles BundleCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementCreateNestedManyWithoutUserInput No
elements ElementCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanCreateNestedManyWithoutUserInput No
faqs FaqCreateNestedManyWithoutUserInput No
categories CategoryCreateNestedManyWithoutUserInput No
tags TagCreateNestedManyWithoutUserInput No
support_tickets Support_TicketCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageCreateNestedManyWithoutUserInput No
affiliators AffiliatorCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput No
coupons CouponCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodCreateNestedManyWithoutUserInput No
team_members Team_MemberCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutFaq_categoriesInput

Name Type Nullable
id Int No
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopUncheckedCreateNestedManyWithoutUserInput No
bundles BundleUncheckedCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementUncheckedCreateNestedManyWithoutUserInput No
elements ElementUncheckedCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanUncheckedCreateNestedManyWithoutUserInput No
faqs FaqUncheckedCreateNestedManyWithoutUserInput No
categories CategoryUncheckedCreateNestedManyWithoutUserInput No
tags TagUncheckedCreateNestedManyWithoutUserInput No
support_tickets Support_TicketUncheckedCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageUncheckedCreateNestedManyWithoutUserInput No
affiliators AffiliatorUncheckedCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutAssigned_userInput No
coupons CouponUncheckedCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodUncheckedCreateNestedManyWithoutUserInput No
team_members Team_MemberUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutFaq_categoriesInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutFaq_categoriesInput | UserUncheckedCreateWithoutFaq_categoriesInput No

FaqCreateWithoutCategoryInput

Name Type Nullable
question String No
answer String No
status FaqStatus No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutFaqsInput No

FaqUncheckedCreateWithoutCategoryInput

Name Type Nullable
id Int No
user_id Int No
question String No
answer String No
status FaqStatus No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

FaqCreateOrConnectWithoutCategoryInput

Name Type Nullable
where FaqWhereUniqueInput No
create FaqCreateWithoutCategoryInput | FaqUncheckedCreateWithoutCategoryInput No

FaqCreateManyCategoryInputEnvelope

Name Type Nullable
data FaqCreateManyCategoryInput | FaqCreateManyCategoryInput[] No
skipDuplicates Boolean No


UserUpdateWithoutFaq_categoriesInput

Name Type Nullable
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUpdateManyWithoutUserNestedInput No
bundles BundleUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUpdateManyWithoutUserNestedInput No
elements ElementUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUpdateManyWithoutUserNestedInput No
faqs FaqUpdateManyWithoutUserNestedInput No
categories CategoryUpdateManyWithoutUserNestedInput No
tags TagUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUpdateManyWithoutUserNestedInput No
team_members Team_MemberUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutFaq_categoriesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUncheckedUpdateManyWithoutUserNestedInput No
bundles BundleUncheckedUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUncheckedUpdateManyWithoutUserNestedInput No
elements ElementUncheckedUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUncheckedUpdateManyWithoutUserNestedInput No
faqs FaqUncheckedUpdateManyWithoutUserNestedInput No
categories CategoryUncheckedUpdateManyWithoutUserNestedInput No
tags TagUncheckedUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUncheckedUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUncheckedUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUncheckedUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUncheckedUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUncheckedUpdateManyWithoutUserNestedInput No
team_members Team_MemberUncheckedUpdateManyWithoutUserNestedInput No

FaqUpsertWithWhereUniqueWithoutCategoryInput

Name Type Nullable
where FaqWhereUniqueInput No
update FaqUpdateWithoutCategoryInput | FaqUncheckedUpdateWithoutCategoryInput No
create FaqCreateWithoutCategoryInput | FaqUncheckedCreateWithoutCategoryInput No

FaqUpdateWithWhereUniqueWithoutCategoryInput

Name Type Nullable
where FaqWhereUniqueInput No
data FaqUpdateWithoutCategoryInput | FaqUncheckedUpdateWithoutCategoryInput No

FaqUpdateManyWithWhereWithoutCategoryInput

Name Type Nullable
where FaqScalarWhereInput No
data FaqUpdateManyMutationInput | FaqUncheckedUpdateManyWithoutFaqsInput No

ShopCreateWithoutWishlisted_elementsInput

Name Type Nullable
uuid String No
shopify_shop_id Int No
name String No
domain String No
status ShopStatus No
created_at DateTime No
updated_at DateTime No
user UserCreateNestedOneWithoutShopsInput No
current_subscription Shop_SubscriptionCreateNestedOneWithoutShopsInput No
orders OrderCreateNestedManyWithoutShopInput No
bookmarked_elements BookmarkCreateNestedManyWithoutShopInput No
recent_used_elements Recent_Used_ElementCreateNestedManyWithoutShopInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutShopInput No

ShopUncheckedCreateWithoutWishlisted_elementsInput

Name Type Nullable
id Int No
uuid String No
user_id Int No
shopify_shop_id Int No
name String No
domain String No
status ShopStatus No
subscription_id Int | Null Yes
created_at DateTime No
updated_at DateTime No
orders OrderUncheckedCreateNestedManyWithoutShopInput No
bookmarked_elements BookmarkUncheckedCreateNestedManyWithoutShopInput No
recent_used_elements Recent_Used_ElementUncheckedCreateNestedManyWithoutShopInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutShopInput No

ShopCreateOrConnectWithoutWishlisted_elementsInput

Name Type Nullable
where ShopWhereUniqueInput No
create ShopCreateWithoutWishlisted_elementsInput | ShopUncheckedCreateWithoutWishlisted_elementsInput No

ElementCreateWithoutWishlisted_elementsInput

Name Type Nullable
name String No
slug String No
description String No
featured_image String No
content String No
file_name String No
status GenericStatus No
type ElementType No
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
wishlisted_count Int | Null Yes
bookmarked_count Int | Null Yes
added_theme_count Int | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutElementsInput No
images Element_ImageCreateNestedManyWithoutElementInput No
best_Uses Element_Best_UseCreateNestedManyWithoutElementInput No
tags Element_TagCreateNestedManyWithoutElementInput No
categories Element_CategoryCreateNestedManyWithoutElementInput No
bundles Bundle_ElementCreateNestedManyWithoutElementInput No
bookmarked_elements BookmarkCreateNestedManyWithoutElementInput No
recent_used_elements Recent_Used_ElementCreateNestedManyWithoutElementInput No

ElementUncheckedCreateWithoutWishlisted_elementsInput

Name Type Nullable
id Int No
name String No
slug String No
description String No
featured_image String No
content String No
file_name String No
status GenericStatus No
type ElementType No
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
user_id Int No
wishlisted_count Int | Null Yes
bookmarked_count Int | Null Yes
added_theme_count Int | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
images Element_ImageUncheckedCreateNestedManyWithoutElementInput No
best_Uses Element_Best_UseUncheckedCreateNestedManyWithoutElementInput No
tags Element_TagUncheckedCreateNestedManyWithoutElementInput No
categories Element_CategoryUncheckedCreateNestedManyWithoutElementInput No
bundles Bundle_ElementUncheckedCreateNestedManyWithoutElementInput No
bookmarked_elements BookmarkUncheckedCreateNestedManyWithoutElementInput No
recent_used_elements Recent_Used_ElementUncheckedCreateNestedManyWithoutElementInput No

ElementCreateOrConnectWithoutWishlisted_elementsInput

Name Type Nullable
where ElementWhereUniqueInput No
create ElementCreateWithoutWishlisted_elementsInput | ElementUncheckedCreateWithoutWishlisted_elementsInput No


ShopUpdateWithoutWishlisted_elementsInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
shopify_shop_id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
domain String | StringFieldUpdateOperationsInput No
status ShopStatus | EnumShopStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneWithoutShopsNestedInput No
current_subscription Shop_SubscriptionUpdateOneWithoutShopsNestedInput No
orders OrderUpdateManyWithoutShopNestedInput No
bookmarked_elements BookmarkUpdateManyWithoutShopNestedInput No
recent_used_elements Recent_Used_ElementUpdateManyWithoutShopNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutShopNestedInput No

ShopUncheckedUpdateWithoutWishlisted_elementsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
shopify_shop_id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
domain String | StringFieldUpdateOperationsInput No
status ShopStatus | EnumShopStatusFieldUpdateOperationsInput No
subscription_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
orders OrderUncheckedUpdateManyWithoutShopNestedInput No
bookmarked_elements BookmarkUncheckedUpdateManyWithoutShopNestedInput No
recent_used_elements Recent_Used_ElementUncheckedUpdateManyWithoutShopNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutShopNestedInput No


ElementUpdateWithoutWishlisted_elementsInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
file_name String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type ElementType | EnumElementTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
wishlisted_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
bookmarked_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
added_theme_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutElementsNestedInput No
images Element_ImageUpdateManyWithoutElementNestedInput No
best_Uses Element_Best_UseUpdateManyWithoutElementNestedInput No
tags Element_TagUpdateManyWithoutElementNestedInput No
categories Element_CategoryUpdateManyWithoutElementNestedInput No
bundles Bundle_ElementUpdateManyWithoutElementNestedInput No
bookmarked_elements BookmarkUpdateManyWithoutElementNestedInput No
recent_used_elements Recent_Used_ElementUpdateManyWithoutElementNestedInput No

ElementUncheckedUpdateWithoutWishlisted_elementsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
file_name String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type ElementType | EnumElementTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
wishlisted_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
bookmarked_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
added_theme_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
images Element_ImageUncheckedUpdateManyWithoutElementNestedInput No
best_Uses Element_Best_UseUncheckedUpdateManyWithoutElementNestedInput No
tags Element_TagUncheckedUpdateManyWithoutElementNestedInput No
categories Element_CategoryUncheckedUpdateManyWithoutElementNestedInput No
bundles Bundle_ElementUncheckedUpdateManyWithoutElementNestedInput No
bookmarked_elements BookmarkUncheckedUpdateManyWithoutElementNestedInput No
recent_used_elements Recent_Used_ElementUncheckedUpdateManyWithoutElementNestedInput No

ShopCreateWithoutBookmarked_elementsInput

Name Type Nullable
uuid String No
shopify_shop_id Int No
name String No
domain String No
status ShopStatus No
created_at DateTime No
updated_at DateTime No
user UserCreateNestedOneWithoutShopsInput No
current_subscription Shop_SubscriptionCreateNestedOneWithoutShopsInput No
orders OrderCreateNestedManyWithoutShopInput No
wishlisted_elements WishlistCreateNestedManyWithoutShopInput No
recent_used_elements Recent_Used_ElementCreateNestedManyWithoutShopInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutShopInput No

ShopUncheckedCreateWithoutBookmarked_elementsInput

Name Type Nullable
id Int No
uuid String No
user_id Int No
shopify_shop_id Int No
name String No
domain String No
status ShopStatus No
subscription_id Int | Null Yes
created_at DateTime No
updated_at DateTime No
orders OrderUncheckedCreateNestedManyWithoutShopInput No
wishlisted_elements WishlistUncheckedCreateNestedManyWithoutShopInput No
recent_used_elements Recent_Used_ElementUncheckedCreateNestedManyWithoutShopInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutShopInput No

ShopCreateOrConnectWithoutBookmarked_elementsInput

Name Type Nullable
where ShopWhereUniqueInput No
create ShopCreateWithoutBookmarked_elementsInput | ShopUncheckedCreateWithoutBookmarked_elementsInput No

ElementCreateWithoutBookmarked_elementsInput

Name Type Nullable
name String No
slug String No
description String No
featured_image String No
content String No
file_name String No
status GenericStatus No
type ElementType No
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
wishlisted_count Int | Null Yes
bookmarked_count Int | Null Yes
added_theme_count Int | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutElementsInput No
images Element_ImageCreateNestedManyWithoutElementInput No
best_Uses Element_Best_UseCreateNestedManyWithoutElementInput No
tags Element_TagCreateNestedManyWithoutElementInput No
categories Element_CategoryCreateNestedManyWithoutElementInput No
bundles Bundle_ElementCreateNestedManyWithoutElementInput No
wishlisted_elements WishlistCreateNestedManyWithoutElementInput No
recent_used_elements Recent_Used_ElementCreateNestedManyWithoutElementInput No

ElementUncheckedCreateWithoutBookmarked_elementsInput

Name Type Nullable
id Int No
name String No
slug String No
description String No
featured_image String No
content String No
file_name String No
status GenericStatus No
type ElementType No
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
user_id Int No
wishlisted_count Int | Null Yes
bookmarked_count Int | Null Yes
added_theme_count Int | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
images Element_ImageUncheckedCreateNestedManyWithoutElementInput No
best_Uses Element_Best_UseUncheckedCreateNestedManyWithoutElementInput No
tags Element_TagUncheckedCreateNestedManyWithoutElementInput No
categories Element_CategoryUncheckedCreateNestedManyWithoutElementInput No
bundles Bundle_ElementUncheckedCreateNestedManyWithoutElementInput No
wishlisted_elements WishlistUncheckedCreateNestedManyWithoutElementInput No
recent_used_elements Recent_Used_ElementUncheckedCreateNestedManyWithoutElementInput No

ElementCreateOrConnectWithoutBookmarked_elementsInput

Name Type Nullable
where ElementWhereUniqueInput No
create ElementCreateWithoutBookmarked_elementsInput | ElementUncheckedCreateWithoutBookmarked_elementsInput No


ShopUpdateWithoutBookmarked_elementsInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
shopify_shop_id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
domain String | StringFieldUpdateOperationsInput No
status ShopStatus | EnumShopStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneWithoutShopsNestedInput No
current_subscription Shop_SubscriptionUpdateOneWithoutShopsNestedInput No
orders OrderUpdateManyWithoutShopNestedInput No
wishlisted_elements WishlistUpdateManyWithoutShopNestedInput No
recent_used_elements Recent_Used_ElementUpdateManyWithoutShopNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutShopNestedInput No

ShopUncheckedUpdateWithoutBookmarked_elementsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
shopify_shop_id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
domain String | StringFieldUpdateOperationsInput No
status ShopStatus | EnumShopStatusFieldUpdateOperationsInput No
subscription_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
orders OrderUncheckedUpdateManyWithoutShopNestedInput No
wishlisted_elements WishlistUncheckedUpdateManyWithoutShopNestedInput No
recent_used_elements Recent_Used_ElementUncheckedUpdateManyWithoutShopNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutShopNestedInput No


ElementUpdateWithoutBookmarked_elementsInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
file_name String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type ElementType | EnumElementTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
wishlisted_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
bookmarked_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
added_theme_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutElementsNestedInput No
images Element_ImageUpdateManyWithoutElementNestedInput No
best_Uses Element_Best_UseUpdateManyWithoutElementNestedInput No
tags Element_TagUpdateManyWithoutElementNestedInput No
categories Element_CategoryUpdateManyWithoutElementNestedInput No
bundles Bundle_ElementUpdateManyWithoutElementNestedInput No
wishlisted_elements WishlistUpdateManyWithoutElementNestedInput No
recent_used_elements Recent_Used_ElementUpdateManyWithoutElementNestedInput No

ElementUncheckedUpdateWithoutBookmarked_elementsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
file_name String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type ElementType | EnumElementTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
wishlisted_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
bookmarked_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
added_theme_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
images Element_ImageUncheckedUpdateManyWithoutElementNestedInput No
best_Uses Element_Best_UseUncheckedUpdateManyWithoutElementNestedInput No
tags Element_TagUncheckedUpdateManyWithoutElementNestedInput No
categories Element_CategoryUncheckedUpdateManyWithoutElementNestedInput No
bundles Bundle_ElementUncheckedUpdateManyWithoutElementNestedInput No
wishlisted_elements WishlistUncheckedUpdateManyWithoutElementNestedInput No
recent_used_elements Recent_Used_ElementUncheckedUpdateManyWithoutElementNestedInput No

ShopCreateWithoutRecent_used_elementsInput

Name Type Nullable
uuid String No
shopify_shop_id Int No
name String No
domain String No
status ShopStatus No
created_at DateTime No
updated_at DateTime No
user UserCreateNestedOneWithoutShopsInput No
current_subscription Shop_SubscriptionCreateNestedOneWithoutShopsInput No
orders OrderCreateNestedManyWithoutShopInput No
bookmarked_elements BookmarkCreateNestedManyWithoutShopInput No
wishlisted_elements WishlistCreateNestedManyWithoutShopInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutShopInput No

ShopUncheckedCreateWithoutRecent_used_elementsInput

Name Type Nullable
id Int No
uuid String No
user_id Int No
shopify_shop_id Int No
name String No
domain String No
status ShopStatus No
subscription_id Int | Null Yes
created_at DateTime No
updated_at DateTime No
orders OrderUncheckedCreateNestedManyWithoutShopInput No
bookmarked_elements BookmarkUncheckedCreateNestedManyWithoutShopInput No
wishlisted_elements WishlistUncheckedCreateNestedManyWithoutShopInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutShopInput No

ShopCreateOrConnectWithoutRecent_used_elementsInput

Name Type Nullable
where ShopWhereUniqueInput No
create ShopCreateWithoutRecent_used_elementsInput | ShopUncheckedCreateWithoutRecent_used_elementsInput No

ElementCreateWithoutRecent_used_elementsInput

Name Type Nullable
name String No
slug String No
description String No
featured_image String No
content String No
file_name String No
status GenericStatus No
type ElementType No
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
wishlisted_count Int | Null Yes
bookmarked_count Int | Null Yes
added_theme_count Int | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
user UserCreateNestedOneWithoutElementsInput No
images Element_ImageCreateNestedManyWithoutElementInput No
best_Uses Element_Best_UseCreateNestedManyWithoutElementInput No
tags Element_TagCreateNestedManyWithoutElementInput No
categories Element_CategoryCreateNestedManyWithoutElementInput No
bundles Bundle_ElementCreateNestedManyWithoutElementInput No
wishlisted_elements WishlistCreateNestedManyWithoutElementInput No
bookmarked_elements BookmarkCreateNestedManyWithoutElementInput No

ElementUncheckedCreateWithoutRecent_used_elementsInput

Name Type Nullable
id Int No
name String No
slug String No
description String No
featured_image String No
content String No
file_name String No
status GenericStatus No
type ElementType No
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
user_id Int No
wishlisted_count Int | Null Yes
bookmarked_count Int | Null Yes
added_theme_count Int | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
images Element_ImageUncheckedCreateNestedManyWithoutElementInput No
best_Uses Element_Best_UseUncheckedCreateNestedManyWithoutElementInput No
tags Element_TagUncheckedCreateNestedManyWithoutElementInput No
categories Element_CategoryUncheckedCreateNestedManyWithoutElementInput No
bundles Bundle_ElementUncheckedCreateNestedManyWithoutElementInput No
wishlisted_elements WishlistUncheckedCreateNestedManyWithoutElementInput No
bookmarked_elements BookmarkUncheckedCreateNestedManyWithoutElementInput No

ElementCreateOrConnectWithoutRecent_used_elementsInput

Name Type Nullable
where ElementWhereUniqueInput No
create ElementCreateWithoutRecent_used_elementsInput | ElementUncheckedCreateWithoutRecent_used_elementsInput No


ShopUpdateWithoutRecent_used_elementsInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
shopify_shop_id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
domain String | StringFieldUpdateOperationsInput No
status ShopStatus | EnumShopStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneWithoutShopsNestedInput No
current_subscription Shop_SubscriptionUpdateOneWithoutShopsNestedInput No
orders OrderUpdateManyWithoutShopNestedInput No
bookmarked_elements BookmarkUpdateManyWithoutShopNestedInput No
wishlisted_elements WishlistUpdateManyWithoutShopNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutShopNestedInput No

ShopUncheckedUpdateWithoutRecent_used_elementsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
shopify_shop_id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
domain String | StringFieldUpdateOperationsInput No
status ShopStatus | EnumShopStatusFieldUpdateOperationsInput No
subscription_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
orders OrderUncheckedUpdateManyWithoutShopNestedInput No
bookmarked_elements BookmarkUncheckedUpdateManyWithoutShopNestedInput No
wishlisted_elements WishlistUncheckedUpdateManyWithoutShopNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutShopNestedInput No


ElementUpdateWithoutRecent_used_elementsInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
file_name String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type ElementType | EnumElementTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
wishlisted_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
bookmarked_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
added_theme_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutElementsNestedInput No
images Element_ImageUpdateManyWithoutElementNestedInput No
best_Uses Element_Best_UseUpdateManyWithoutElementNestedInput No
tags Element_TagUpdateManyWithoutElementNestedInput No
categories Element_CategoryUpdateManyWithoutElementNestedInput No
bundles Bundle_ElementUpdateManyWithoutElementNestedInput No
wishlisted_elements WishlistUpdateManyWithoutElementNestedInput No
bookmarked_elements BookmarkUpdateManyWithoutElementNestedInput No

ElementUncheckedUpdateWithoutRecent_used_elementsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
file_name String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type ElementType | EnumElementTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
wishlisted_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
bookmarked_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
added_theme_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
images Element_ImageUncheckedUpdateManyWithoutElementNestedInput No
best_Uses Element_Best_UseUncheckedUpdateManyWithoutElementNestedInput No
tags Element_TagUncheckedUpdateManyWithoutElementNestedInput No
categories Element_CategoryUncheckedUpdateManyWithoutElementNestedInput No
bundles Bundle_ElementUncheckedUpdateManyWithoutElementNestedInput No
wishlisted_elements WishlistUncheckedUpdateManyWithoutElementNestedInput No
bookmarked_elements BookmarkUncheckedUpdateManyWithoutElementNestedInput No

UserCreateWithoutSupport_ticketsInput

Name Type Nullable
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopCreateNestedManyWithoutUserInput No
bundles BundleCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementCreateNestedManyWithoutUserInput No
elements ElementCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanCreateNestedManyWithoutUserInput No
faqs FaqCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryCreateNestedManyWithoutUserInput No
categories CategoryCreateNestedManyWithoutUserInput No
tags TagCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageCreateNestedManyWithoutUserInput No
affiliators AffiliatorCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput No
coupons CouponCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodCreateNestedManyWithoutUserInput No
team_members Team_MemberCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutSupport_ticketsInput

Name Type Nullable
id Int No
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopUncheckedCreateNestedManyWithoutUserInput No
bundles BundleUncheckedCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementUncheckedCreateNestedManyWithoutUserInput No
elements ElementUncheckedCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanUncheckedCreateNestedManyWithoutUserInput No
faqs FaqUncheckedCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryUncheckedCreateNestedManyWithoutUserInput No
categories CategoryUncheckedCreateNestedManyWithoutUserInput No
tags TagUncheckedCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageUncheckedCreateNestedManyWithoutUserInput No
affiliators AffiliatorUncheckedCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutAssigned_userInput No
coupons CouponUncheckedCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodUncheckedCreateNestedManyWithoutUserInput No
team_members Team_MemberUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutSupport_ticketsInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutSupport_ticketsInput | UserUncheckedCreateWithoutSupport_ticketsInput No

Ticket_MessageCreateWithoutSupport_ticketInput

Name Type Nullable
message String No
created_at DateTime No
updated_at DateTime No
user UserCreateNestedOneWithoutTicket_messagesInput No

Ticket_MessageUncheckedCreateWithoutSupport_ticketInput

Name Type Nullable
id Int No
user_id Int No
message String No
created_at DateTime No
updated_at DateTime No

Ticket_MessageCreateOrConnectWithoutSupport_ticketInput

Name Type Nullable
where Ticket_MessageWhereUniqueInput No
create Ticket_MessageCreateWithoutSupport_ticketInput | Ticket_MessageUncheckedCreateWithoutSupport_ticketInput No

Ticket_MessageCreateManySupport_ticketInputEnvelope

Name Type Nullable
data Ticket_MessageCreateManySupport_ticketInput | Ticket_MessageCreateManySupport_ticketInput[] No
skipDuplicates Boolean No


UserUpdateWithoutSupport_ticketsInput

Name Type Nullable
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUpdateManyWithoutUserNestedInput No
bundles BundleUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUpdateManyWithoutUserNestedInput No
elements ElementUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUpdateManyWithoutUserNestedInput No
faqs FaqUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUpdateManyWithoutUserNestedInput No
categories CategoryUpdateManyWithoutUserNestedInput No
tags TagUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUpdateManyWithoutUserNestedInput No
team_members Team_MemberUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutSupport_ticketsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUncheckedUpdateManyWithoutUserNestedInput No
bundles BundleUncheckedUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUncheckedUpdateManyWithoutUserNestedInput No
elements ElementUncheckedUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUncheckedUpdateManyWithoutUserNestedInput No
faqs FaqUncheckedUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUncheckedUpdateManyWithoutUserNestedInput No
categories CategoryUncheckedUpdateManyWithoutUserNestedInput No
tags TagUncheckedUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUncheckedUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUncheckedUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUncheckedUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUncheckedUpdateManyWithoutUserNestedInput No
team_members Team_MemberUncheckedUpdateManyWithoutUserNestedInput No


Ticket_MessageUpdateWithWhereUniqueWithoutSupport_ticketInput

Name Type Nullable
where Ticket_MessageWhereUniqueInput No
data Ticket_MessageUpdateWithoutSupport_ticketInput | Ticket_MessageUncheckedUpdateWithoutSupport_ticketInput No

Ticket_MessageUpdateManyWithWhereWithoutSupport_ticketInput

Name Type Nullable
where Ticket_MessageScalarWhereInput No
data Ticket_MessageUpdateManyMutationInput | Ticket_MessageUncheckedUpdateManyWithoutTicket_messagesInput No

UserCreateWithoutTicket_messagesInput

Name Type Nullable
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopCreateNestedManyWithoutUserInput No
bundles BundleCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementCreateNestedManyWithoutUserInput No
elements ElementCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanCreateNestedManyWithoutUserInput No
faqs FaqCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryCreateNestedManyWithoutUserInput No
categories CategoryCreateNestedManyWithoutUserInput No
tags TagCreateNestedManyWithoutUserInput No
support_tickets Support_TicketCreateNestedManyWithoutUserInput No
affiliators AffiliatorCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput No
coupons CouponCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodCreateNestedManyWithoutUserInput No
team_members Team_MemberCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutTicket_messagesInput

Name Type Nullable
id Int No
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopUncheckedCreateNestedManyWithoutUserInput No
bundles BundleUncheckedCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementUncheckedCreateNestedManyWithoutUserInput No
elements ElementUncheckedCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanUncheckedCreateNestedManyWithoutUserInput No
faqs FaqUncheckedCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryUncheckedCreateNestedManyWithoutUserInput No
categories CategoryUncheckedCreateNestedManyWithoutUserInput No
tags TagUncheckedCreateNestedManyWithoutUserInput No
support_tickets Support_TicketUncheckedCreateNestedManyWithoutUserInput No
affiliators AffiliatorUncheckedCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutAssigned_userInput No
coupons CouponUncheckedCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodUncheckedCreateNestedManyWithoutUserInput No
team_members Team_MemberUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutTicket_messagesInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutTicket_messagesInput | UserUncheckedCreateWithoutTicket_messagesInput No

Support_TicketCreateWithoutTicket_messagesInput

Name Type Nullable
uuid String No
ref_id Int No
ref_type SupportRefType No
criteria SupportCriteria No
reason String No
description String No
status SupportStatus | Null Yes
label SupportLabel | Null Yes
assignee Int | Null Yes
assigned_at DateTime | Null Yes
created_at DateTime No
updated_at DateTime No
user UserCreateNestedOneWithoutSupport_ticketsInput No

Support_TicketUncheckedCreateWithoutTicket_messagesInput

Name Type Nullable
id Int No
uuid String No
user_id Int No
ref_id Int No
ref_type SupportRefType No
criteria SupportCriteria No
reason String No
description String No
status SupportStatus | Null Yes
label SupportLabel | Null Yes
assignee Int | Null Yes
assigned_at DateTime | Null Yes
created_at DateTime No
updated_at DateTime No

Support_TicketCreateOrConnectWithoutTicket_messagesInput

Name Type Nullable
where Support_TicketWhereUniqueInput No
create Support_TicketCreateWithoutTicket_messagesInput | Support_TicketUncheckedCreateWithoutTicket_messagesInput No


UserUpdateWithoutTicket_messagesInput

Name Type Nullable
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUpdateManyWithoutUserNestedInput No
bundles BundleUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUpdateManyWithoutUserNestedInput No
elements ElementUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUpdateManyWithoutUserNestedInput No
faqs FaqUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUpdateManyWithoutUserNestedInput No
categories CategoryUpdateManyWithoutUserNestedInput No
tags TagUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUpdateManyWithoutUserNestedInput No
team_members Team_MemberUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutTicket_messagesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUncheckedUpdateManyWithoutUserNestedInput No
bundles BundleUncheckedUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUncheckedUpdateManyWithoutUserNestedInput No
elements ElementUncheckedUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUncheckedUpdateManyWithoutUserNestedInput No
faqs FaqUncheckedUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUncheckedUpdateManyWithoutUserNestedInput No
categories CategoryUncheckedUpdateManyWithoutUserNestedInput No
tags TagUncheckedUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUncheckedUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUncheckedUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUncheckedUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUncheckedUpdateManyWithoutUserNestedInput No
team_members Team_MemberUncheckedUpdateManyWithoutUserNestedInput No


Support_TicketUpdateWithoutTicket_messagesInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
ref_id Int | IntFieldUpdateOperationsInput No
ref_type SupportRefType | EnumSupportRefTypeFieldUpdateOperationsInput No
criteria SupportCriteria | EnumSupportCriteriaFieldUpdateOperationsInput No
reason String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
status SupportStatus | NullableEnumSupportStatusFieldUpdateOperationsInput | Null Yes
label SupportLabel | NullableEnumSupportLabelFieldUpdateOperationsInput | Null Yes
assignee Int | NullableIntFieldUpdateOperationsInput | Null Yes
assigned_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneWithoutSupport_ticketsNestedInput No

Support_TicketUncheckedUpdateWithoutTicket_messagesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
ref_id Int | IntFieldUpdateOperationsInput No
ref_type SupportRefType | EnumSupportRefTypeFieldUpdateOperationsInput No
criteria SupportCriteria | EnumSupportCriteriaFieldUpdateOperationsInput No
reason String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
status SupportStatus | NullableEnumSupportStatusFieldUpdateOperationsInput | Null Yes
label SupportLabel | NullableEnumSupportLabelFieldUpdateOperationsInput | Null Yes
assignee Int | NullableIntFieldUpdateOperationsInput | Null Yes
assigned_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

UserCreateWithoutTeam_membersInput

Name Type Nullable
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopCreateNestedManyWithoutUserInput No
bundles BundleCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementCreateNestedManyWithoutUserInput No
elements ElementCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanCreateNestedManyWithoutUserInput No
faqs FaqCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryCreateNestedManyWithoutUserInput No
categories CategoryCreateNestedManyWithoutUserInput No
tags TagCreateNestedManyWithoutUserInput No
support_tickets Support_TicketCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageCreateNestedManyWithoutUserInput No
affiliators AffiliatorCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestCreateNestedManyWithoutAssigned_userInput No
coupons CouponCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodCreateNestedManyWithoutUserInput No

UserUncheckedCreateWithoutTeam_membersInput

Name Type Nullable
id Int No
first_name String No
last_name String No
email String No
password String | Null Yes
phone String | Null Yes
profile_photo String | Null Yes
role UserRole No
status UserStatus | Null Yes
is_verified Boolean | Null Yes
is_shopify_user Boolean | Null Yes
date_of_birth DateTime | Null Yes
country_code String | Null Yes
country String | Null Yes
address String | Null Yes
website_url String | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes
shops ShopUncheckedCreateNestedManyWithoutUserInput No
bundles BundleUncheckedCreateNestedManyWithoutUserInput No
bundle_elements Bundle_ElementUncheckedCreateNestedManyWithoutUserInput No
elements ElementUncheckedCreateNestedManyWithoutUserInput No
pricing_plans Pricing_PlanUncheckedCreateNestedManyWithoutUserInput No
faqs FaqUncheckedCreateNestedManyWithoutUserInput No
faq_categories Faq_CategoryUncheckedCreateNestedManyWithoutUserInput No
categories CategoryUncheckedCreateNestedManyWithoutUserInput No
tags TagUncheckedCreateNestedManyWithoutUserInput No
support_tickets Support_TicketUncheckedCreateNestedManyWithoutUserInput No
ticket_messages Ticket_MessageUncheckedCreateNestedManyWithoutUserInput No
affiliators AffiliatorUncheckedCreateNestedManyWithoutUserInput No
affiliator_commissions Affiliator_CommissionUncheckedCreateNestedManyWithoutUserInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedCreateNestedManyWithoutAssigned_userInput No
coupons CouponUncheckedCreateNestedManyWithoutUserInput No
user_pament_methods User_Pament_MethodUncheckedCreateNestedManyWithoutUserInput No

UserCreateOrConnectWithoutTeam_membersInput

Name Type Nullable
where UserWhereUniqueInput No
create UserCreateWithoutTeam_membersInput | UserUncheckedCreateWithoutTeam_membersInput No


UserUpdateWithoutTeam_membersInput

Name Type Nullable
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUpdateManyWithoutUserNestedInput No
bundles BundleUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUpdateManyWithoutUserNestedInput No
elements ElementUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUpdateManyWithoutUserNestedInput No
faqs FaqUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUpdateManyWithoutUserNestedInput No
categories CategoryUpdateManyWithoutUserNestedInput No
tags TagUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUpdateManyWithoutUserNestedInput No

UserUncheckedUpdateWithoutTeam_membersInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
first_name String | StringFieldUpdateOperationsInput No
last_name String | StringFieldUpdateOperationsInput No
email String | StringFieldUpdateOperationsInput No
password String | NullableStringFieldUpdateOperationsInput | Null Yes
phone String | NullableStringFieldUpdateOperationsInput | Null Yes
profile_photo String | NullableStringFieldUpdateOperationsInput | Null Yes
role UserRole | EnumUserRoleFieldUpdateOperationsInput No
status UserStatus | NullableEnumUserStatusFieldUpdateOperationsInput | Null Yes
is_verified Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
is_shopify_user Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
date_of_birth DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
country_code String | NullableStringFieldUpdateOperationsInput | Null Yes
country String | NullableStringFieldUpdateOperationsInput | Null Yes
address String | NullableStringFieldUpdateOperationsInput | Null Yes
website_url String | NullableStringFieldUpdateOperationsInput | Null Yes
social_handles NullableJsonNullValueInput | Json No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
shops ShopUncheckedUpdateManyWithoutUserNestedInput No
bundles BundleUncheckedUpdateManyWithoutUserNestedInput No
bundle_elements Bundle_ElementUncheckedUpdateManyWithoutUserNestedInput No
elements ElementUncheckedUpdateManyWithoutUserNestedInput No
pricing_plans Pricing_PlanUncheckedUpdateManyWithoutUserNestedInput No
faqs FaqUncheckedUpdateManyWithoutUserNestedInput No
faq_categories Faq_CategoryUncheckedUpdateManyWithoutUserNestedInput No
categories CategoryUncheckedUpdateManyWithoutUserNestedInput No
tags TagUncheckedUpdateManyWithoutUserNestedInput No
support_tickets Support_TicketUncheckedUpdateManyWithoutUserNestedInput No
ticket_messages Ticket_MessageUncheckedUpdateManyWithoutUserNestedInput No
affiliators AffiliatorUncheckedUpdateManyWithoutUserNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutUserNestedInput No
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutAssigned_userNestedInput No
coupons CouponUncheckedUpdateManyWithoutUserNestedInput No
user_pament_methods User_Pament_MethodUncheckedUpdateManyWithoutUserNestedInput No

ShopCreateManyUserInput

Name Type Nullable
id Int No
uuid String No
shopify_shop_id Int No
name String No
domain String No
status ShopStatus No
subscription_id Int | Null Yes
created_at DateTime No
updated_at DateTime No

BundleCreateManyUserInput

Name Type Nullable
id Int No
name String No
slug String No
description String No
featured_image String No
status GenericStatus No
type BundleType No
is_auto_price Boolean | Null Yes
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

Bundle_ElementCreateManyUserInput

Name Type Nullable
id Int No
bundle_id Int No
element_id Int No
element_type ElementType No
status GenericStatus No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

ElementCreateManyUserInput

Name Type Nullable
id Int No
name String No
slug String No
description String No
featured_image String No
content String No
file_name String No
status GenericStatus No
type ElementType No
price Decimal No
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
demo_url String | Null Yes
video_url String | Null Yes
version String | Null Yes
wishlisted_count Int | Null Yes
bookmarked_count Int | Null Yes
added_theme_count Int | Null Yes
view_count Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

Pricing_PlanCreateManyUserInput

Name Type Nullable
id Int No
name String No
tagline String No
description String No
type PricingPlanType No
is_recommended Boolean No
is_popular Boolean No
price Decimal No
discounted_price Decimal | Null Yes
yearly_discounted_price Decimal | Null Yes
trial_period Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

FaqCreateManyUserInput

Name Type Nullable
id Int No
question String No
answer String No
status FaqStatus No
category_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

Faq_CategoryCreateManyUserInput

Name Type Nullable
id Int No
name String No
description String | Null Yes
banner String | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

CategoryCreateManyUserInput

Name Type Nullable
id Int No
name String No
slug String No
description String | Null Yes
type AssetType No
status GenericStatus No
image String | Null Yes
banner String | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

TagCreateManyUserInput

Name Type Nullable
id Int No
name String No
slug String No
description String | Null Yes
image String | Null Yes
banner String | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

Support_TicketCreateManyUserInput

Name Type Nullable
id Int No
uuid String No
ref_id Int No
ref_type SupportRefType No
criteria SupportCriteria No
reason String No
description String No
status SupportStatus | Null Yes
label SupportLabel | Null Yes
assignee Int | Null Yes
assigned_at DateTime | Null Yes
created_at DateTime No
updated_at DateTime No

Ticket_MessageCreateManyUserInput

Name Type Nullable
id Int No
ticket_id Int No
message String No
created_at DateTime No
updated_at DateTime No

AffiliatorCreateManyUserInput

Name Type Nullable
id Int No
uuid String No
invited_by Int | Null Yes
type AffiliatorType No
type_other String | Null Yes
status AffiliatorStatus No
total_earned Decimal | Null Yes
total_paid Decimal | Null Yes
current_coupon_id Int | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

Affiliator_CommissionCreateManyUserInput

Name Type Nullable
id Int No
uuid String No
affiliator_id Int No
order_id Int | Null Yes
shop_id Int | Null Yes
coupon_id Int | Null Yes
coupon_code String | Null Yes
order_amout Decimal | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
commission_type DiscountType No
commission_value Decimal No
amount Decimal No
status CommissionStatus No
created_at DateTime No
updated_at DateTime No

Affiliator_Withdraw_RequestCreateManyAssigned_userInput

Name Type Nullable
id Int No
uuid String No
affiliator_id Int No
status CommissionWithdrawStatus No
amount Decimal No
payment_method_id Int No
payment_method PaymentMethod No
payment_method_details JsonNullValueInput | Json No
note String | Null Yes
reject_reason String | Null Yes
created_at DateTime No
updated_at DateTime No

CouponCreateManyUserInput

Name Type Nullable
id Int No
code String No
status CouponStatus No
expired_at DateTime | Null Yes
max_total_applied Int | Null Yes
max_applied_by_shop Int | Null Yes
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
min_order_amount Decimal | Null Yes
max_discount_limit Decimal | Null Yes
is_apply_on_asset_discount Boolean | Null Yes
affiliated_by Int | Null Yes
commission_type DiscountType | Null Yes
commission_value Decimal | Null Yes
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

User_Pament_MethodCreateManyUserInput

Name Type Nullable
id Int No
method PaymentMethod No
details JsonNullValueInput | Json No
is_default Boolean No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes

Team_MemberCreateManyUserInput

Name Type Nullable
id Int No
role TeamMemberRole No
designation String | Null Yes
badge String | Null Yes
invited_by Int | Null Yes
onboarded_at DateTime | Null Yes
created_at DateTime No
updated_at DateTime No

ShopUpdateWithoutUserInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
shopify_shop_id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
domain String | StringFieldUpdateOperationsInput No
status ShopStatus | EnumShopStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
current_subscription Shop_SubscriptionUpdateOneWithoutShopsNestedInput No
orders OrderUpdateManyWithoutShopNestedInput No
bookmarked_elements BookmarkUpdateManyWithoutShopNestedInput No
wishlisted_elements WishlistUpdateManyWithoutShopNestedInput No
recent_used_elements Recent_Used_ElementUpdateManyWithoutShopNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutShopNestedInput No

ShopUncheckedUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
shopify_shop_id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
domain String | StringFieldUpdateOperationsInput No
status ShopStatus | EnumShopStatusFieldUpdateOperationsInput No
subscription_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
orders OrderUncheckedUpdateManyWithoutShopNestedInput No
bookmarked_elements BookmarkUncheckedUpdateManyWithoutShopNestedInput No
wishlisted_elements WishlistUncheckedUpdateManyWithoutShopNestedInput No
recent_used_elements Recent_Used_ElementUncheckedUpdateManyWithoutShopNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutShopNestedInput No

ShopUncheckedUpdateManyWithoutShopsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
shopify_shop_id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
domain String | StringFieldUpdateOperationsInput No
status ShopStatus | EnumShopStatusFieldUpdateOperationsInput No
subscription_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

BundleUpdateWithoutUserInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type BundleType | EnumBundleTypeFieldUpdateOperationsInput No
is_auto_price Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
elements Bundle_ElementUpdateManyWithoutBundleNestedInput No
images Bundle_ImageUpdateManyWithoutBundleNestedInput No
categories Bundle_CategoryUpdateManyWithoutBundleNestedInput No

BundleUncheckedUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type BundleType | EnumBundleTypeFieldUpdateOperationsInput No
is_auto_price Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
elements Bundle_ElementUncheckedUpdateManyWithoutBundleNestedInput No
images Bundle_ImageUncheckedUpdateManyWithoutBundleNestedInput No
categories Bundle_CategoryUncheckedUpdateManyWithoutBundleNestedInput No

BundleUncheckedUpdateManyWithoutBundlesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type BundleType | EnumBundleTypeFieldUpdateOperationsInput No
is_auto_price Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

Bundle_ElementUpdateWithoutUserInput

Name Type Nullable
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
bundle BundleUpdateOneWithoutElementsNestedInput No
element ElementUpdateOneWithoutBundlesNestedInput No

Bundle_ElementUncheckedUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
bundle_id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

Bundle_ElementUncheckedUpdateManyWithoutBundle_elementsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
bundle_id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

ElementUpdateWithoutUserInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
file_name String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type ElementType | EnumElementTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
wishlisted_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
bookmarked_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
added_theme_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
images Element_ImageUpdateManyWithoutElementNestedInput No
best_Uses Element_Best_UseUpdateManyWithoutElementNestedInput No
tags Element_TagUpdateManyWithoutElementNestedInput No
categories Element_CategoryUpdateManyWithoutElementNestedInput No
bundles Bundle_ElementUpdateManyWithoutElementNestedInput No
wishlisted_elements WishlistUpdateManyWithoutElementNestedInput No
bookmarked_elements BookmarkUpdateManyWithoutElementNestedInput No
recent_used_elements Recent_Used_ElementUpdateManyWithoutElementNestedInput No

ElementUncheckedUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
file_name String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type ElementType | EnumElementTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
wishlisted_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
bookmarked_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
added_theme_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
images Element_ImageUncheckedUpdateManyWithoutElementNestedInput No
best_Uses Element_Best_UseUncheckedUpdateManyWithoutElementNestedInput No
tags Element_TagUncheckedUpdateManyWithoutElementNestedInput No
categories Element_CategoryUncheckedUpdateManyWithoutElementNestedInput No
bundles Bundle_ElementUncheckedUpdateManyWithoutElementNestedInput No
wishlisted_elements WishlistUncheckedUpdateManyWithoutElementNestedInput No
bookmarked_elements BookmarkUncheckedUpdateManyWithoutElementNestedInput No
recent_used_elements Recent_Used_ElementUncheckedUpdateManyWithoutElementNestedInput No

ElementUncheckedUpdateManyWithoutElementsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
featured_image String | StringFieldUpdateOperationsInput No
content String | StringFieldUpdateOperationsInput No
file_name String | StringFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
type ElementType | EnumElementTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
demo_url String | NullableStringFieldUpdateOperationsInput | Null Yes
video_url String | NullableStringFieldUpdateOperationsInput | Null Yes
version String | NullableStringFieldUpdateOperationsInput | Null Yes
wishlisted_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
bookmarked_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
added_theme_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
view_count Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

Pricing_PlanUpdateWithoutUserInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
tagline String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
type PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput No
is_recommended Boolean | BoolFieldUpdateOperationsInput No
is_popular Boolean | BoolFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
yearly_discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
trial_period Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
subscriptions Shop_SubscriptionUpdateManyWithoutPlanNestedInput No
pricing_plan_features Pricing_Plan_FeatureUpdateManyWithoutPricing_planNestedInput No

Pricing_PlanUncheckedUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
tagline String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
type PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput No
is_recommended Boolean | BoolFieldUpdateOperationsInput No
is_popular Boolean | BoolFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
yearly_discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
trial_period Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
subscriptions Shop_SubscriptionUncheckedUpdateManyWithoutPlanNestedInput No
pricing_plan_features Pricing_Plan_FeatureUncheckedUpdateManyWithoutPricing_planNestedInput No

Pricing_PlanUncheckedUpdateManyWithoutPricing_plansInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
tagline String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
type PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput No
is_recommended Boolean | BoolFieldUpdateOperationsInput No
is_popular Boolean | BoolFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
yearly_discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
trial_period Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

FaqUpdateWithoutUserInput

Name Type Nullable
question String | StringFieldUpdateOperationsInput No
answer String | StringFieldUpdateOperationsInput No
status FaqStatus | EnumFaqStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
category Faq_CategoryUpdateOneWithoutFaqsNestedInput No

FaqUncheckedUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
question String | StringFieldUpdateOperationsInput No
answer String | StringFieldUpdateOperationsInput No
status FaqStatus | EnumFaqStatusFieldUpdateOperationsInput No
category_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

FaqUncheckedUpdateManyWithoutFaqsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
question String | StringFieldUpdateOperationsInput No
answer String | StringFieldUpdateOperationsInput No
status FaqStatus | EnumFaqStatusFieldUpdateOperationsInput No
category_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

Faq_CategoryUpdateWithoutUserInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
faqs FaqUpdateManyWithoutCategoryNestedInput No

Faq_CategoryUncheckedUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
faqs FaqUncheckedUpdateManyWithoutCategoryNestedInput No

Faq_CategoryUncheckedUpdateManyWithoutFaq_categoriesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

CategoryUpdateWithoutUserInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
element_categories Element_CategoryUpdateManyWithoutCategoryNestedInput No
bundle_categories Bundle_CategoryUpdateManyWithoutCategoryNestedInput No

CategoryUncheckedUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
element_categories Element_CategoryUncheckedUpdateManyWithoutCategoryNestedInput No
bundle_categories Bundle_CategoryUncheckedUpdateManyWithoutCategoryNestedInput No

CategoryUncheckedUpdateManyWithoutCategoriesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
image String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

TagUpdateWithoutUserInput

Name Type Nullable
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
elements Element_TagUpdateManyWithoutTagNestedInput No

TagUncheckedUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
elements Element_TagUncheckedUpdateManyWithoutTagNestedInput No

TagUncheckedUpdateManyWithoutTagsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
slug String | StringFieldUpdateOperationsInput No
description String | NullableStringFieldUpdateOperationsInput | Null Yes
image String | NullableStringFieldUpdateOperationsInput | Null Yes
banner String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

Support_TicketUpdateWithoutUserInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
ref_id Int | IntFieldUpdateOperationsInput No
ref_type SupportRefType | EnumSupportRefTypeFieldUpdateOperationsInput No
criteria SupportCriteria | EnumSupportCriteriaFieldUpdateOperationsInput No
reason String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
status SupportStatus | NullableEnumSupportStatusFieldUpdateOperationsInput | Null Yes
label SupportLabel | NullableEnumSupportLabelFieldUpdateOperationsInput | Null Yes
assignee Int | NullableIntFieldUpdateOperationsInput | Null Yes
assigned_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
ticket_messages Ticket_MessageUpdateManyWithoutSupport_ticketNestedInput No

Support_TicketUncheckedUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
ref_id Int | IntFieldUpdateOperationsInput No
ref_type SupportRefType | EnumSupportRefTypeFieldUpdateOperationsInput No
criteria SupportCriteria | EnumSupportCriteriaFieldUpdateOperationsInput No
reason String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
status SupportStatus | NullableEnumSupportStatusFieldUpdateOperationsInput | Null Yes
label SupportLabel | NullableEnumSupportLabelFieldUpdateOperationsInput | Null Yes
assignee Int | NullableIntFieldUpdateOperationsInput | Null Yes
assigned_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
ticket_messages Ticket_MessageUncheckedUpdateManyWithoutSupport_ticketNestedInput No

Support_TicketUncheckedUpdateManyWithoutSupport_ticketsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
ref_id Int | IntFieldUpdateOperationsInput No
ref_type SupportRefType | EnumSupportRefTypeFieldUpdateOperationsInput No
criteria SupportCriteria | EnumSupportCriteriaFieldUpdateOperationsInput No
reason String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
status SupportStatus | NullableEnumSupportStatusFieldUpdateOperationsInput | Null Yes
label SupportLabel | NullableEnumSupportLabelFieldUpdateOperationsInput | Null Yes
assignee Int | NullableIntFieldUpdateOperationsInput | Null Yes
assigned_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Ticket_MessageUpdateWithoutUserInput

Name Type Nullable
message String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
support_ticket Support_TicketUpdateOneWithoutTicket_messagesNestedInput No

Ticket_MessageUncheckedUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
ticket_id Int | IntFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Ticket_MessageUncheckedUpdateManyWithoutTicket_messagesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
ticket_id Int | IntFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

AffiliatorUpdateWithoutUserInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
invited_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
type AffiliatorType | EnumAffiliatorTypeFieldUpdateOperationsInput No
type_other String | NullableStringFieldUpdateOperationsInput | Null Yes
status AffiliatorStatus | EnumAffiliatorStatusFieldUpdateOperationsInput No
total_earned Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
total_paid Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
current_coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
affiliator_withdraw_requests Affiliator_Withdraw_RequestUpdateManyWithoutAffiliatorNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutAffiliatorNestedInput No
coupons CouponUpdateManyWithoutAffiliatorNestedInput No

AffiliatorUncheckedUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
invited_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
type AffiliatorType | EnumAffiliatorTypeFieldUpdateOperationsInput No
type_other String | NullableStringFieldUpdateOperationsInput | Null Yes
status AffiliatorStatus | EnumAffiliatorStatusFieldUpdateOperationsInput No
total_earned Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
total_paid Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
current_coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutAffiliatorNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutAffiliatorNestedInput No
coupons CouponUncheckedUpdateManyWithoutAffiliatorNestedInput No

AffiliatorUncheckedUpdateManyWithoutAffiliatorsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
invited_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
type AffiliatorType | EnumAffiliatorTypeFieldUpdateOperationsInput No
type_other String | NullableStringFieldUpdateOperationsInput | Null Yes
status AffiliatorStatus | EnumAffiliatorStatusFieldUpdateOperationsInput No
total_earned Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
total_paid Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
current_coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

Affiliator_CommissionUpdateWithoutUserInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
order_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
commission_value Decimal | DecimalFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
status CommissionStatus | EnumCommissionStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
affiliator AffiliatorUpdateOneWithoutAffiliator_commissionsNestedInput No
order OrderUpdateOneWithoutAffiliator_commissionsNestedInput No
shop ShopUpdateOneWithoutAffiliator_commissionsNestedInput No
coupon CouponUpdateOneWithoutAffiliator_commissionsNestedInput No

Affiliator_CommissionUncheckedUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
affiliator_id Int | IntFieldUpdateOperationsInput No
order_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
shop_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
order_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
commission_value Decimal | DecimalFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
status CommissionStatus | EnumCommissionStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Affiliator_CommissionUncheckedUpdateManyWithoutAffiliator_commissionsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
affiliator_id Int | IntFieldUpdateOperationsInput No
order_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
shop_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
order_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
commission_value Decimal | DecimalFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
status CommissionStatus | EnumCommissionStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Affiliator_Withdraw_RequestUpdateWithoutAssigned_userInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
status CommissionWithdrawStatus | EnumCommissionWithdrawStatusFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
payment_method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
payment_method_details JsonNullValueInput | Json No
note String | NullableStringFieldUpdateOperationsInput | Null Yes
reject_reason String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
affiliator AffiliatorUpdateOneWithoutAffiliator_withdraw_requestsNestedInput No
payment_method_detail User_Pament_MethodUpdateOneWithoutAffiliator_withdraw_requestsNestedInput No

Affiliator_Withdraw_RequestUncheckedUpdateWithoutAssigned_userInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
affiliator_id Int | IntFieldUpdateOperationsInput No
status CommissionWithdrawStatus | EnumCommissionWithdrawStatusFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
payment_method_id Int | IntFieldUpdateOperationsInput No
payment_method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
payment_method_details JsonNullValueInput | Json No
note String | NullableStringFieldUpdateOperationsInput | Null Yes
reject_reason String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutAffiliator_withdraw_requestsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
affiliator_id Int | IntFieldUpdateOperationsInput No
status CommissionWithdrawStatus | EnumCommissionWithdrawStatusFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
payment_method_id Int | IntFieldUpdateOperationsInput No
payment_method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
payment_method_details JsonNullValueInput | Json No
note String | NullableStringFieldUpdateOperationsInput | Null Yes
reject_reason String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

CouponUpdateWithoutUserInput

Name Type Nullable
code String | StringFieldUpdateOperationsInput No
status CouponStatus | EnumCouponStatusFieldUpdateOperationsInput No
expired_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
max_total_applied Int | NullableIntFieldUpdateOperationsInput | Null Yes
max_applied_by_shop Int | NullableIntFieldUpdateOperationsInput | Null Yes
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
min_order_amount Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
max_discount_limit Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
is_apply_on_asset_discount Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
commission_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
affiliator AffiliatorUpdateOneWithoutCouponsNestedInput No
orders OrderUpdateManyWithoutCouponNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutCouponNestedInput No

CouponUncheckedUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
status CouponStatus | EnumCouponStatusFieldUpdateOperationsInput No
expired_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
max_total_applied Int | NullableIntFieldUpdateOperationsInput | Null Yes
max_applied_by_shop Int | NullableIntFieldUpdateOperationsInput | Null Yes
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
min_order_amount Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
max_discount_limit Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
is_apply_on_asset_discount Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
affiliated_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
commission_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
orders OrderUncheckedUpdateManyWithoutCouponNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutCouponNestedInput No

CouponUncheckedUpdateManyWithoutCouponsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
status CouponStatus | EnumCouponStatusFieldUpdateOperationsInput No
expired_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
max_total_applied Int | NullableIntFieldUpdateOperationsInput | Null Yes
max_applied_by_shop Int | NullableIntFieldUpdateOperationsInput | Null Yes
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
min_order_amount Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
max_discount_limit Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
is_apply_on_asset_discount Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
affiliated_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
commission_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

User_Pament_MethodUpdateWithoutUserInput

Name Type Nullable
method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
details JsonNullValueInput | Json No
is_default Boolean | BoolFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
affiliator_withdraw_requests Affiliator_Withdraw_RequestUpdateManyWithoutPayment_method_detailNestedInput No

User_Pament_MethodUncheckedUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
details JsonNullValueInput | Json No
is_default Boolean | BoolFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
affiliator_withdraw_requests Affiliator_Withdraw_RequestUncheckedUpdateManyWithoutPayment_method_detailNestedInput No

User_Pament_MethodUncheckedUpdateManyWithoutUser_pament_methodsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
details JsonNullValueInput | Json No
is_default Boolean | BoolFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes

Team_MemberUpdateWithoutUserInput

Name Type Nullable
role TeamMemberRole | EnumTeamMemberRoleFieldUpdateOperationsInput No
designation String | NullableStringFieldUpdateOperationsInput | Null Yes
badge String | NullableStringFieldUpdateOperationsInput | Null Yes
invited_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
onboarded_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Team_MemberUncheckedUpdateWithoutUserInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
role TeamMemberRole | EnumTeamMemberRoleFieldUpdateOperationsInput No
designation String | NullableStringFieldUpdateOperationsInput | Null Yes
badge String | NullableStringFieldUpdateOperationsInput | Null Yes
invited_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
onboarded_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Team_MemberUncheckedUpdateManyWithoutTeam_membersInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
role TeamMemberRole | EnumTeamMemberRoleFieldUpdateOperationsInput No
designation String | NullableStringFieldUpdateOperationsInput | Null Yes
badge String | NullableStringFieldUpdateOperationsInput | Null Yes
invited_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
onboarded_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

OrderCreateManyShopInput

Name Type Nullable
id Int No
uuid String No
asset_type AssetType No
status OrderStatus No
sub_total Decimal No
discounted_amout Decimal | Null Yes
coupon_id Int | Null Yes
coupon_code String | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
grand_total Decimal No
affiliated_by Int | Null Yes
affiliated_commission Decimal | Null Yes
created_at DateTime No
updated_at DateTime No

BookmarkCreateManyShopInput

Name Type Nullable
id Int No
element_id Int No
element_type ElementType No
created_at DateTime No

WishlistCreateManyShopInput

Name Type Nullable
id Int No
element_id Int No
element_type ElementType No
created_at DateTime No

Recent_Used_ElementCreateManyShopInput

Name Type Nullable
id Int No
element_id Int No
element_type ElementType No
created_at DateTime No

Affiliator_CommissionCreateManyShopInput

Name Type Nullable
id Int No
uuid String No
affiliator_id Int No
user_id Int No
order_id Int | Null Yes
coupon_id Int | Null Yes
coupon_code String | Null Yes
order_amout Decimal | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
commission_type DiscountType No
commission_value Decimal No
amount Decimal No
status CommissionStatus No
created_at DateTime No
updated_at DateTime No

OrderUpdateWithoutShopInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
asset_type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
status OrderStatus | EnumOrderStatusFieldUpdateOperationsInput No
sub_total Decimal | DecimalFieldUpdateOperationsInput No
discounted_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
grand_total Decimal | DecimalFieldUpdateOperationsInput No
affiliated_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
affiliated_commission Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
coupon CouponUpdateOneWithoutOrdersNestedInput No
order_items Order_ItemUpdateManyWithoutOrderNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutOrderNestedInput No

OrderUncheckedUpdateWithoutShopInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
asset_type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
status OrderStatus | EnumOrderStatusFieldUpdateOperationsInput No
sub_total Decimal | DecimalFieldUpdateOperationsInput No
discounted_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
grand_total Decimal | DecimalFieldUpdateOperationsInput No
affiliated_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
affiliated_commission Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
order_items Order_ItemUncheckedUpdateManyWithoutOrderNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutOrderNestedInput No

OrderUncheckedUpdateManyWithoutOrdersInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
asset_type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
status OrderStatus | EnumOrderStatusFieldUpdateOperationsInput No
sub_total Decimal | DecimalFieldUpdateOperationsInput No
discounted_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
grand_total Decimal | DecimalFieldUpdateOperationsInput No
affiliated_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
affiliated_commission Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

BookmarkUpdateWithoutShopInput

Name Type Nullable
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
element ElementUpdateOneWithoutBookmarked_elementsNestedInput No

BookmarkUncheckedUpdateWithoutShopInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

BookmarkUncheckedUpdateManyWithoutBookmarked_elementsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

WishlistUpdateWithoutShopInput

Name Type Nullable
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
element ElementUpdateOneWithoutWishlisted_elementsNestedInput No

WishlistUncheckedUpdateWithoutShopInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

WishlistUncheckedUpdateManyWithoutWishlisted_elementsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Recent_Used_ElementUpdateWithoutShopInput

Name Type Nullable
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
element ElementUpdateOneWithoutRecent_used_elementsNestedInput No

Recent_Used_ElementUncheckedUpdateWithoutShopInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Recent_Used_ElementUncheckedUpdateManyWithoutRecent_used_elementsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Affiliator_CommissionUpdateWithoutShopInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
order_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
commission_value Decimal | DecimalFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
status CommissionStatus | EnumCommissionStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
affiliator AffiliatorUpdateOneWithoutAffiliator_commissionsNestedInput No
user UserUpdateOneWithoutAffiliator_commissionsNestedInput No
order OrderUpdateOneWithoutAffiliator_commissionsNestedInput No
coupon CouponUpdateOneWithoutAffiliator_commissionsNestedInput No

Affiliator_CommissionUncheckedUpdateWithoutShopInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
affiliator_id Int | IntFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
order_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
order_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
commission_value Decimal | DecimalFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
status CommissionStatus | EnumCommissionStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Element_ImageCreateManyElementInput

Name Type Nullable
id Int No
url String No
created_at DateTime No

Element_Best_UseCreateManyElementInput

Name Type Nullable
id Int No
title String No
description String No
created_at DateTime No
updated_at DateTime No

Element_TagCreateManyElementInput

Name Type Nullable
id Int No
tag_id Int No
created_at DateTime No

Element_CategoryCreateManyElementInput

Name Type Nullable
id Int No
category_id Int No
created_at DateTime No

Bundle_ElementCreateManyElementInput

Name Type Nullable
id Int No
bundle_id Int No
element_type ElementType No
status GenericStatus No
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

WishlistCreateManyElementInput

Name Type Nullable
id Int No
shop_id Int No
element_type ElementType No
created_at DateTime No

BookmarkCreateManyElementInput

Name Type Nullable
id Int No
shop_id Int No
element_type ElementType No
created_at DateTime No

Recent_Used_ElementCreateManyElementInput

Name Type Nullable
id Int No
shop_id Int No
element_type ElementType No
created_at DateTime No

Element_ImageUpdateWithoutElementInput

Name Type Nullable
url String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Element_ImageUncheckedUpdateWithoutElementInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Element_ImageUncheckedUpdateManyWithoutImagesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Element_Best_UseUpdateWithoutElementInput

Name Type Nullable
title String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Element_Best_UseUncheckedUpdateWithoutElementInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Element_Best_UseUncheckedUpdateManyWithoutBest_UsesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
description String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Element_TagUpdateWithoutElementInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
tag TagUpdateOneWithoutElementsNestedInput No

Element_TagUncheckedUpdateWithoutElementInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
tag_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Element_TagUncheckedUpdateManyWithoutTagsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
tag_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Element_CategoryUpdateWithoutElementInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
category CategoryUpdateOneWithoutElement_categoriesNestedInput No

Element_CategoryUncheckedUpdateWithoutElementInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
category_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Element_CategoryUncheckedUpdateManyWithoutCategoriesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
category_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Bundle_ElementUpdateWithoutElementInput

Name Type Nullable
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutBundle_elementsNestedInput No
bundle BundleUpdateOneWithoutElementsNestedInput No

Bundle_ElementUncheckedUpdateWithoutElementInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
bundle_id Int | IntFieldUpdateOperationsInput No
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

Bundle_ElementUncheckedUpdateManyWithoutBundlesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
bundle_id Int | IntFieldUpdateOperationsInput No
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

WishlistUpdateWithoutElementInput

Name Type Nullable
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
shop ShopUpdateOneWithoutWishlisted_elementsNestedInput No

WishlistUncheckedUpdateWithoutElementInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
shop_id Int | IntFieldUpdateOperationsInput No
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

BookmarkUpdateWithoutElementInput

Name Type Nullable
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
shop ShopUpdateOneWithoutBookmarked_elementsNestedInput No

BookmarkUncheckedUpdateWithoutElementInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
shop_id Int | IntFieldUpdateOperationsInput No
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Recent_Used_ElementUpdateWithoutElementInput

Name Type Nullable
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
shop ShopUpdateOneWithoutRecent_used_elementsNestedInput No

Recent_Used_ElementUncheckedUpdateWithoutElementInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
shop_id Int | IntFieldUpdateOperationsInput No
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Bundle_ElementCreateManyBundleInput

Name Type Nullable
id Int No
element_id Int No
element_type ElementType No
status GenericStatus No
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

Bundle_ImageCreateManyBundleInput

Name Type Nullable
id Int No
url String No
created_at DateTime No

Bundle_CategoryCreateManyBundleInput

Name Type Nullable
id Int No
category_id Int No
created_at DateTime No

Bundle_ElementUpdateWithoutBundleInput

Name Type Nullable
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutBundle_elementsNestedInput No
element ElementUpdateOneWithoutBundlesNestedInput No

Bundle_ElementUncheckedUpdateWithoutBundleInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

Bundle_ElementUncheckedUpdateManyWithoutElementsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
element_type ElementType | EnumElementTypeFieldUpdateOperationsInput No
status GenericStatus | EnumGenericStatusFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

Bundle_ImageUpdateWithoutBundleInput

Name Type Nullable
url String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Bundle_ImageUncheckedUpdateWithoutBundleInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Bundle_ImageUncheckedUpdateManyWithoutImagesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
url String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Bundle_CategoryUpdateWithoutBundleInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
category CategoryUpdateOneWithoutBundle_categoriesNestedInput No

Bundle_CategoryUncheckedUpdateWithoutBundleInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
category_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Bundle_CategoryUncheckedUpdateManyWithoutCategoriesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
category_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Element_CategoryCreateManyCategoryInput

Name Type Nullable
id Int No
element_id Int No
created_at DateTime No

Bundle_CategoryCreateManyCategoryInput

Name Type Nullable
id Int No
bundle_id Int No
created_at DateTime No

Element_CategoryUpdateWithoutCategoryInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
element ElementUpdateOneWithoutCategoriesNestedInput No

Element_CategoryUncheckedUpdateWithoutCategoryInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Element_CategoryUncheckedUpdateManyWithoutElement_categoriesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Bundle_CategoryUpdateWithoutCategoryInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
bundle BundleUpdateOneWithoutCategoriesNestedInput No

Bundle_CategoryUncheckedUpdateWithoutCategoryInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
bundle_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Bundle_CategoryUncheckedUpdateManyWithoutBundle_categoriesInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
bundle_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Element_TagCreateManyTagInput

Name Type Nullable
id Int No
element_id Int No
created_at DateTime No

Element_TagUpdateWithoutTagInput

Name Type Nullable
created_at DateTime | DateTimeFieldUpdateOperationsInput No
element ElementUpdateOneWithoutTagsNestedInput No

Element_TagUncheckedUpdateWithoutTagInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Element_TagUncheckedUpdateManyWithoutElementsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
element_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No

Order_ItemCreateManyOrderInput

Name Type Nullable
id Int No
asset_id Int No
asset_type AssetType No
price Decimal No
discounted_price Decimal | Null Yes
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
order_bundle_id Int | Null Yes

Affiliator_CommissionCreateManyOrderInput

Name Type Nullable
id Int No
uuid String No
affiliator_id Int No
user_id Int No
shop_id Int | Null Yes
coupon_id Int | Null Yes
coupon_code String | Null Yes
order_amout Decimal | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
commission_type DiscountType No
commission_value Decimal No
amount Decimal No
status CommissionStatus No
created_at DateTime No
updated_at DateTime No

Order_ItemUpdateWithoutOrderInput

Name Type Nullable
asset_id Int | IntFieldUpdateOperationsInput No
asset_type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
order_bundle_id Int | NullableIntFieldUpdateOperationsInput | Null Yes

Order_ItemUncheckedUpdateWithoutOrderInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
asset_id Int | IntFieldUpdateOperationsInput No
asset_type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
order_bundle_id Int | NullableIntFieldUpdateOperationsInput | Null Yes

Order_ItemUncheckedUpdateManyWithoutOrder_itemsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
asset_id Int | IntFieldUpdateOperationsInput No
asset_type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
price Decimal | DecimalFieldUpdateOperationsInput No
discounted_price Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
order_bundle_id Int | NullableIntFieldUpdateOperationsInput | Null Yes

Affiliator_CommissionUpdateWithoutOrderInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
order_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
commission_value Decimal | DecimalFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
status CommissionStatus | EnumCommissionStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
affiliator AffiliatorUpdateOneWithoutAffiliator_commissionsNestedInput No
user UserUpdateOneWithoutAffiliator_commissionsNestedInput No
shop ShopUpdateOneWithoutAffiliator_commissionsNestedInput No
coupon CouponUpdateOneWithoutAffiliator_commissionsNestedInput No

Affiliator_CommissionUncheckedUpdateWithoutOrderInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
affiliator_id Int | IntFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
shop_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
order_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
commission_value Decimal | DecimalFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
status CommissionStatus | EnumCommissionStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

OrderCreateManyCouponInput

Name Type Nullable
id Int No
uuid String No
shop_id Int No
asset_type AssetType No
status OrderStatus No
sub_total Decimal No
discounted_amout Decimal | Null Yes
coupon_code String | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
grand_total Decimal No
affiliated_by Int | Null Yes
affiliated_commission Decimal | Null Yes
created_at DateTime No
updated_at DateTime No

Affiliator_CommissionCreateManyCouponInput

Name Type Nullable
id Int No
uuid String No
affiliator_id Int No
user_id Int No
order_id Int | Null Yes
shop_id Int | Null Yes
coupon_code String | Null Yes
order_amout Decimal | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
commission_type DiscountType No
commission_value Decimal No
amount Decimal No
status CommissionStatus No
created_at DateTime No
updated_at DateTime No

OrderUpdateWithoutCouponInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
asset_type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
status OrderStatus | EnumOrderStatusFieldUpdateOperationsInput No
sub_total Decimal | DecimalFieldUpdateOperationsInput No
discounted_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
grand_total Decimal | DecimalFieldUpdateOperationsInput No
affiliated_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
affiliated_commission Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
shop ShopUpdateOneWithoutOrdersNestedInput No
order_items Order_ItemUpdateManyWithoutOrderNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutOrderNestedInput No

OrderUncheckedUpdateWithoutCouponInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
shop_id Int | IntFieldUpdateOperationsInput No
asset_type AssetType | EnumAssetTypeFieldUpdateOperationsInput No
status OrderStatus | EnumOrderStatusFieldUpdateOperationsInput No
sub_total Decimal | DecimalFieldUpdateOperationsInput No
discounted_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
grand_total Decimal | DecimalFieldUpdateOperationsInput No
affiliated_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
affiliated_commission Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
order_items Order_ItemUncheckedUpdateManyWithoutOrderNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutOrderNestedInput No

Affiliator_CommissionUpdateWithoutCouponInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
order_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
commission_value Decimal | DecimalFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
status CommissionStatus | EnumCommissionStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
affiliator AffiliatorUpdateOneWithoutAffiliator_commissionsNestedInput No
user UserUpdateOneWithoutAffiliator_commissionsNestedInput No
order OrderUpdateOneWithoutAffiliator_commissionsNestedInput No
shop ShopUpdateOneWithoutAffiliator_commissionsNestedInput No

Affiliator_CommissionUncheckedUpdateWithoutCouponInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
affiliator_id Int | IntFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
order_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
shop_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
order_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
commission_value Decimal | DecimalFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
status CommissionStatus | EnumCommissionStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Affiliator_Withdraw_RequestCreateManyAffiliatorInput

Name Type Nullable
id Int No
uuid String No
status CommissionWithdrawStatus No
amount Decimal No
payment_method_id Int No
payment_method PaymentMethod No
payment_method_details JsonNullValueInput | Json No
assignee Int | Null Yes
note String | Null Yes
reject_reason String | Null Yes
created_at DateTime No
updated_at DateTime No

Affiliator_CommissionCreateManyAffiliatorInput

Name Type Nullable
id Int No
uuid String No
user_id Int No
order_id Int | Null Yes
shop_id Int | Null Yes
coupon_id Int | Null Yes
coupon_code String | Null Yes
order_amout Decimal | Null Yes
coupon_discount_type DiscountType | Null Yes
coupon_discount_value Decimal | Null Yes
commission_type DiscountType No
commission_value Decimal No
amount Decimal No
status CommissionStatus No
created_at DateTime No
updated_at DateTime No

CouponCreateManyAffiliatorInput

Name Type Nullable
id Int No
code String No
status CouponStatus No
expired_at DateTime | Null Yes
max_total_applied Int | Null Yes
max_applied_by_shop Int | Null Yes
discount_type DiscountType | Null Yes
discount_value Decimal | Null Yes
min_order_amount Decimal | Null Yes
max_discount_limit Decimal | Null Yes
is_apply_on_asset_discount Boolean | Null Yes
commission_type DiscountType | Null Yes
commission_value Decimal | Null Yes
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

Affiliator_Withdraw_RequestUpdateWithoutAffiliatorInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
status CommissionWithdrawStatus | EnumCommissionWithdrawStatusFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
payment_method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
payment_method_details JsonNullValueInput | Json No
note String | NullableStringFieldUpdateOperationsInput | Null Yes
reject_reason String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
payment_method_detail User_Pament_MethodUpdateOneWithoutAffiliator_withdraw_requestsNestedInput No
assigned_user UserUpdateOneWithoutAffiliator_withdraw_requestsNestedInput No

Affiliator_Withdraw_RequestUncheckedUpdateWithoutAffiliatorInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
status CommissionWithdrawStatus | EnumCommissionWithdrawStatusFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
payment_method_id Int | IntFieldUpdateOperationsInput No
payment_method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
payment_method_details JsonNullValueInput | Json No
assignee Int | NullableIntFieldUpdateOperationsInput | Null Yes
note String | NullableStringFieldUpdateOperationsInput | Null Yes
reject_reason String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Affiliator_CommissionUpdateWithoutAffiliatorInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
order_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
commission_value Decimal | DecimalFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
status CommissionStatus | EnumCommissionStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneWithoutAffiliator_commissionsNestedInput No
order OrderUpdateOneWithoutAffiliator_commissionsNestedInput No
shop ShopUpdateOneWithoutAffiliator_commissionsNestedInput No
coupon CouponUpdateOneWithoutAffiliator_commissionsNestedInput No

Affiliator_CommissionUncheckedUpdateWithoutAffiliatorInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
order_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
shop_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
coupon_id Int | NullableIntFieldUpdateOperationsInput | Null Yes
coupon_code String | NullableStringFieldUpdateOperationsInput | Null Yes
order_amout Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
coupon_discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
coupon_discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | EnumDiscountTypeFieldUpdateOperationsInput No
commission_value Decimal | DecimalFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
status CommissionStatus | EnumCommissionStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

CouponUpdateWithoutAffiliatorInput

Name Type Nullable
code String | StringFieldUpdateOperationsInput No
status CouponStatus | EnumCouponStatusFieldUpdateOperationsInput No
expired_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
max_total_applied Int | NullableIntFieldUpdateOperationsInput | Null Yes
max_applied_by_shop Int | NullableIntFieldUpdateOperationsInput | Null Yes
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
min_order_amount Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
max_discount_limit Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
is_apply_on_asset_discount Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
commission_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutCouponsNestedInput No
orders OrderUpdateManyWithoutCouponNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutCouponNestedInput No

CouponUncheckedUpdateWithoutAffiliatorInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
code String | StringFieldUpdateOperationsInput No
status CouponStatus | EnumCouponStatusFieldUpdateOperationsInput No
expired_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
max_total_applied Int | NullableIntFieldUpdateOperationsInput | Null Yes
max_applied_by_shop Int | NullableIntFieldUpdateOperationsInput | Null Yes
discount_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
discount_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
min_order_amount Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
max_discount_limit Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
is_apply_on_asset_discount Boolean | NullableBoolFieldUpdateOperationsInput | Null Yes
commission_type DiscountType | NullableEnumDiscountTypeFieldUpdateOperationsInput | Null Yes
commission_value Decimal | NullableDecimalFieldUpdateOperationsInput | Null Yes
user_id Int | IntFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
orders OrderUncheckedUpdateManyWithoutCouponNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutCouponNestedInput No

Affiliator_Withdraw_RequestCreateManyPayment_method_detailInput

Name Type Nullable
id Int No
uuid String No
affiliator_id Int No
status CommissionWithdrawStatus No
amount Decimal No
payment_method PaymentMethod No
payment_method_details JsonNullValueInput | Json No
assignee Int | Null Yes
note String | Null Yes
reject_reason String | Null Yes
created_at DateTime No
updated_at DateTime No

Affiliator_Withdraw_RequestUpdateWithoutPayment_method_detailInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
status CommissionWithdrawStatus | EnumCommissionWithdrawStatusFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
payment_method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
payment_method_details JsonNullValueInput | Json No
note String | NullableStringFieldUpdateOperationsInput | Null Yes
reject_reason String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
affiliator AffiliatorUpdateOneWithoutAffiliator_withdraw_requestsNestedInput No
assigned_user UserUpdateOneWithoutAffiliator_withdraw_requestsNestedInput No

Affiliator_Withdraw_RequestUncheckedUpdateWithoutPayment_method_detailInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
affiliator_id Int | IntFieldUpdateOperationsInput No
status CommissionWithdrawStatus | EnumCommissionWithdrawStatusFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
payment_method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
payment_method_details JsonNullValueInput | Json No
assignee Int | NullableIntFieldUpdateOperationsInput | Null Yes
note String | NullableStringFieldUpdateOperationsInput | Null Yes
reject_reason String | NullableStringFieldUpdateOperationsInput | Null Yes
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Shop_SubscriptionCreateManyPlanInput

Name Type Nullable
id Int No
uuid String No
shop_id Int No
plan_type PricingPlanType No
status SubscriptionStatus No
created_at DateTime No
ended_at DateTime | Null Yes
ended_type SubscriptionEndedType | Null Yes
updated_at DateTime No
amount Decimal No
payment_method PaymentMethod No

Pricing_Plan_FeatureCreateManyPricing_planInput

Name Type Nullable
id Int No
title String No
type String | Null Yes
description String | Null Yes

Shop_SubscriptionUpdateWithoutPlanInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
shop_id Int | IntFieldUpdateOperationsInput No
plan_type PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput No
status SubscriptionStatus | EnumSubscriptionStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
ended_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
ended_type SubscriptionEndedType | NullableEnumSubscriptionEndedTypeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
payment_method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
shops ShopUpdateManyWithoutCurrent_subscriptionNestedInput No

Shop_SubscriptionUncheckedUpdateWithoutPlanInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
shop_id Int | IntFieldUpdateOperationsInput No
plan_type PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput No
status SubscriptionStatus | EnumSubscriptionStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
ended_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
ended_type SubscriptionEndedType | NullableEnumSubscriptionEndedTypeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
payment_method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No
shops ShopUncheckedUpdateManyWithoutCurrent_subscriptionNestedInput No

Shop_SubscriptionUncheckedUpdateManyWithoutSubscriptionsInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
shop_id Int | IntFieldUpdateOperationsInput No
plan_type PricingPlanType | EnumPricingPlanTypeFieldUpdateOperationsInput No
status SubscriptionStatus | EnumSubscriptionStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
ended_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
ended_type SubscriptionEndedType | NullableEnumSubscriptionEndedTypeFieldUpdateOperationsInput | Null Yes
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
amount Decimal | DecimalFieldUpdateOperationsInput No
payment_method PaymentMethod | EnumPaymentMethodFieldUpdateOperationsInput No

Pricing_Plan_FeatureUpdateWithoutPricing_planInput

Name Type Nullable
title String | StringFieldUpdateOperationsInput No
type String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes

Pricing_Plan_FeatureUncheckedUpdateWithoutPricing_planInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
type String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes

Pricing_Plan_FeatureUncheckedUpdateManyWithoutPricing_plan_featuresInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
title String | StringFieldUpdateOperationsInput No
type String | NullableStringFieldUpdateOperationsInput | Null Yes
description String | NullableStringFieldUpdateOperationsInput | Null Yes

ShopCreateManyCurrent_subscriptionInput

Name Type Nullable
id Int No
uuid String No
user_id Int No
shopify_shop_id Int No
name String No
domain String No
status ShopStatus No
created_at DateTime No
updated_at DateTime No

ShopUpdateWithoutCurrent_subscriptionInput

Name Type Nullable
uuid String | StringFieldUpdateOperationsInput No
shopify_shop_id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
domain String | StringFieldUpdateOperationsInput No
status ShopStatus | EnumShopStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneWithoutShopsNestedInput No
orders OrderUpdateManyWithoutShopNestedInput No
bookmarked_elements BookmarkUpdateManyWithoutShopNestedInput No
wishlisted_elements WishlistUpdateManyWithoutShopNestedInput No
recent_used_elements Recent_Used_ElementUpdateManyWithoutShopNestedInput No
affiliator_commissions Affiliator_CommissionUpdateManyWithoutShopNestedInput No

ShopUncheckedUpdateWithoutCurrent_subscriptionInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
uuid String | StringFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
shopify_shop_id Int | IntFieldUpdateOperationsInput No
name String | StringFieldUpdateOperationsInput No
domain String | StringFieldUpdateOperationsInput No
status ShopStatus | EnumShopStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
orders OrderUncheckedUpdateManyWithoutShopNestedInput No
bookmarked_elements BookmarkUncheckedUpdateManyWithoutShopNestedInput No
wishlisted_elements WishlistUncheckedUpdateManyWithoutShopNestedInput No
recent_used_elements Recent_Used_ElementUncheckedUpdateManyWithoutShopNestedInput No
affiliator_commissions Affiliator_CommissionUncheckedUpdateManyWithoutShopNestedInput No

FaqCreateManyCategoryInput

Name Type Nullable
id Int No
user_id Int No
question String No
answer String No
status FaqStatus No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime | Null Yes
deleted_by Int | Null Yes

FaqUpdateWithoutCategoryInput

Name Type Nullable
question String | StringFieldUpdateOperationsInput No
answer String | StringFieldUpdateOperationsInput No
status FaqStatus | EnumFaqStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes
user UserUpdateOneWithoutFaqsNestedInput No

FaqUncheckedUpdateWithoutCategoryInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
question String | StringFieldUpdateOperationsInput No
answer String | StringFieldUpdateOperationsInput No
status FaqStatus | EnumFaqStatusFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
deleted_at DateTime | NullableDateTimeFieldUpdateOperationsInput | Null Yes
deleted_by Int | NullableIntFieldUpdateOperationsInput | Null Yes

Ticket_MessageCreateManySupport_ticketInput

Name Type Nullable
id Int No
user_id Int No
message String No
created_at DateTime No
updated_at DateTime No

Ticket_MessageUpdateWithoutSupport_ticketInput

Name Type Nullable
message String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No
user UserUpdateOneWithoutTicket_messagesNestedInput No

Ticket_MessageUncheckedUpdateWithoutSupport_ticketInput

Name Type Nullable
id Int | IntFieldUpdateOperationsInput No
user_id Int | IntFieldUpdateOperationsInput No
message String | StringFieldUpdateOperationsInput No
created_at DateTime | DateTimeFieldUpdateOperationsInput No
updated_at DateTime | DateTimeFieldUpdateOperationsInput No

Output Types

User

Name Type Nullable
id Int Yes
first_name String Yes
last_name String Yes
email String Yes
password String No
phone String No
profile_photo String No
role UserRole Yes
status UserStatus No
is_verified Boolean No
is_shopify_user Boolean No
date_of_birth DateTime No
country_code String No
country String No
address String No
website_url String No
social_handles Json No
created_at DateTime Yes
updated_at DateTime Yes
deleted_at DateTime No
deleted_by Int No
shops Shop[] No
bundles Bundle[] No
bundle_elements Bundle_Element[] No
elements Element[] No
pricing_plans Pricing_Plan[] No
faqs Faq[] No
faq_categories Faq_Category[] No
categories Category[] No
tags Tag[] No
support_tickets Support_Ticket[] No
ticket_messages Ticket_Message[] No
affiliators Affiliator[] No
affiliator_commissions Affiliator_Commission[] No
affiliator_withdraw_requests Affiliator_Withdraw_Request[] No
coupons Coupon[] No
user_pament_methods User_Pament_Method[] No
team_members Team_Member[] No
_count UserCountOutputType Yes

Shop

Name Type Nullable
id Int Yes
uuid String Yes
user_id Int Yes
shopify_shop_id Int Yes
name String Yes
domain String Yes
status ShopStatus Yes
subscription_id Int No
created_at DateTime Yes
updated_at DateTime Yes
user User No
current_subscription Shop_Subscription No
orders Order[] No
bookmarked_elements Bookmark[] No
wishlisted_elements Wishlist[] No
recent_used_elements Recent_Used_Element[] No
affiliator_commissions Affiliator_Commission[] No
_count ShopCountOutputType Yes

Element

Name Type Nullable
id Int Yes
name String Yes
slug String Yes
description String Yes
featured_image String Yes
content String Yes
file_name String Yes
status GenericStatus Yes
type ElementType Yes
price Decimal Yes
discount_type DiscountType No
discount_value Decimal No
demo_url String No
video_url String No
version String No
user_id Int Yes
wishlisted_count Int No
bookmarked_count Int No
added_theme_count Int No
view_count Int No
created_at DateTime Yes
updated_at DateTime Yes
deleted_at DateTime No
deleted_by Int No
user User No
images Element_Image[] No
best_Uses Element_Best_Use[] No
tags Element_Tag[] No
categories Element_Category[] No
bundles Bundle_Element[] No
wishlisted_elements Wishlist[] No
bookmarked_elements Bookmark[] No
recent_used_elements Recent_Used_Element[] No
_count ElementCountOutputType Yes

Bundle

Name Type Nullable
id Int Yes
name String Yes
slug String Yes
description String Yes
featured_image String Yes
status GenericStatus Yes
type BundleType Yes
is_auto_price Boolean No
price Decimal Yes
discount_type DiscountType No
discount_value Decimal No
demo_url String No
video_url String No
version String No
user_id Int Yes
view_count Int No
created_at DateTime Yes
updated_at DateTime Yes
deleted_at DateTime No
deleted_by Int No
user User No
elements Bundle_Element[] No
images Bundle_Image[] No
categories Bundle_Category[] No
_count BundleCountOutputType Yes

Bundle_Element

Name Type Nullable
id Int Yes
bundle_id Int Yes
element_id Int Yes
element_type ElementType Yes
status GenericStatus Yes
user_id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
deleted_at DateTime No
deleted_by Int No
user User No
bundle Bundle No
element Element No

Element_Image

Name Type Nullable
id Int Yes
url String Yes
element_id Int Yes
created_at DateTime Yes
element Element No

Bundle_Image

Name Type Nullable
id Int Yes
url String Yes
bundle_id Int Yes
created_at DateTime Yes
bundle Bundle No

Element_Best_Use

Name Type Nullable
id Int Yes
element_id Int Yes
title String Yes
description String Yes
created_at DateTime Yes
updated_at DateTime Yes
element Element No

Category

Name Type Nullable
id Int Yes
name String Yes
slug String Yes
description String No
type AssetType Yes
status GenericStatus Yes
image String No
banner String No
user_id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
deleted_at DateTime No
deleted_by Int No
user User No
element_categories Element_Category[] No
bundle_categories Bundle_Category[] No
_count CategoryCountOutputType Yes

Element_Category

Name Type Nullable
id Int Yes
element_id Int Yes
category_id Int Yes
created_at DateTime Yes
element Element No
category Category No

Bundle_Category

Name Type Nullable
id Int Yes
bundle_id Int Yes
category_id Int Yes
created_at DateTime Yes
bundle Bundle No
category Category No

Tag

Name Type Nullable
id Int Yes
name String Yes
slug String Yes
user_id Int Yes
description String No
image String No
banner String No
created_at DateTime Yes
updated_at DateTime Yes
deleted_at DateTime No
deleted_by Int No
user User No
elements Element_Tag[] No
_count TagCountOutputType Yes

Element_Tag

Name Type Nullable
id Int Yes
element_id Int Yes
tag_id Int Yes
created_at DateTime Yes
tag Tag No
element Element No

Session

Name Type Nullable
id Int Yes
shop String Yes
state String No
isOnline Boolean Yes
scope String Yes
userId Int No

Order

Name Type Nullable
id Int Yes
uuid String Yes
shop_id Int Yes
asset_type AssetType Yes
status OrderStatus Yes
sub_total Decimal Yes
discounted_amout Decimal No
coupon_id Int No
coupon_code String No
coupon_discount_type DiscountType No
coupon_discount_value Decimal No
grand_total Decimal Yes
affiliated_by Int No
affiliated_commission Decimal No
created_at DateTime Yes
updated_at DateTime Yes
shop Shop No
coupon Coupon No
order_items Order_Item[] No
affiliator_commissions Affiliator_Commission[] No
_count OrderCountOutputType Yes

Order_Item

Name Type Nullable
id Int Yes
order_id Int Yes
asset_id Int Yes
asset_type AssetType Yes
price Decimal Yes
discounted_price Decimal No
discount_type DiscountType No
discount_value Decimal No
order_bundle_id Int No
order Order No

Coupon

Name Type Nullable
id Int Yes
code String Yes
status CouponStatus Yes
expired_at DateTime No
max_total_applied Int No
max_applied_by_shop Int No
discount_type DiscountType No
discount_value Decimal No
min_order_amount Decimal No
max_discount_limit Decimal No
is_apply_on_asset_discount Boolean No
affiliated_by Int No
commission_type DiscountType No
commission_value Decimal No
user_id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
deleted_at DateTime No
deleted_by Int No
affiliator Affiliator No
user User No
orders Order[] No
affiliator_commissions Affiliator_Commission[] No
_count CouponCountOutputType Yes

Affiliator

Name Type Nullable
id Int Yes
uuid String Yes
user_id Int Yes
invited_by Int No
type AffiliatorType Yes
type_other String No
status AffiliatorStatus Yes
total_earned Decimal No
total_paid Decimal No
current_coupon_id Int No
created_at DateTime Yes
updated_at DateTime Yes
deleted_at DateTime No
deleted_by Int No
user User No
affiliator_withdraw_requests Affiliator_Withdraw_Request[] No
affiliator_commissions Affiliator_Commission[] No
coupons Coupon[] No
_count AffiliatorCountOutputType Yes

Affiliator_Commission

Name Type Nullable
id Int Yes
uuid String Yes
affiliator_id Int Yes
user_id Int Yes
order_id Int No
shop_id Int No
coupon_id Int No
coupon_code String No
order_amout Decimal No
coupon_discount_type DiscountType No
coupon_discount_value Decimal No
commission_type DiscountType Yes
commission_value Decimal Yes
amount Decimal Yes
status CommissionStatus Yes
created_at DateTime Yes
updated_at DateTime Yes
affiliator Affiliator No
user User No
order Order No
shop Shop No
coupon Coupon No

Affiliator_Withdraw_Request

Name Type Nullable
id Int Yes
uuid String Yes
affiliator_id Int Yes
status CommissionWithdrawStatus Yes
amount Decimal Yes
payment_method_id Int Yes
payment_method PaymentMethod Yes
payment_method_details Json Yes
assignee Int No
note String No
reject_reason String No
created_at DateTime Yes
updated_at DateTime Yes
affiliator Affiliator No
payment_method_detail User_Pament_Method No
assigned_user User No

User_Pament_Method

Name Type Nullable
id Int Yes
user_id Int Yes
method PaymentMethod Yes
details Json Yes
is_default Boolean Yes
created_at DateTime Yes
updated_at DateTime Yes
deleted_at DateTime No
user User No
affiliator_withdraw_requests Affiliator_Withdraw_Request[] No
_count User_Pament_MethodCountOutputType Yes

Pricing_Plan

Name Type Nullable
id Int Yes
name String Yes
tagline String Yes
description String Yes
type PricingPlanType Yes
is_recommended Boolean Yes
is_popular Boolean Yes
price Decimal Yes
discounted_price Decimal No
yearly_discounted_price Decimal No
trial_period Int No
user_id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
deleted_at DateTime No
deleted_by Int No
user User No
subscriptions Shop_Subscription[] No
pricing_plan_features Pricing_Plan_Feature[] No
_count Pricing_PlanCountOutputType Yes

Pricing_Plan_Feature

Name Type Nullable
id Int Yes
plan_id Int Yes
title String Yes
type String No
description String No
pricing_plan Pricing_Plan No

Shop_Subscription

Name Type Nullable
id Int Yes
uuid String Yes
shop_id Int Yes
plan_id Int Yes
plan_type PricingPlanType Yes
status SubscriptionStatus Yes
created_at DateTime Yes
ended_at DateTime No
ended_type SubscriptionEndedType No
updated_at DateTime Yes
amount Decimal Yes
payment_method PaymentMethod Yes
plan Pricing_Plan No
shops Shop[] No
_count Shop_SubscriptionCountOutputType Yes

Faq

Name Type Nullable
id Int Yes
user_id Int Yes
question String Yes
answer String Yes
status FaqStatus Yes
category_id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
deleted_at DateTime No
deleted_by Int No
user User No
category Faq_Category No

Faq_Category

Name Type Nullable
id Int Yes
name String Yes
user_id Int Yes
description String No
banner String No
created_at DateTime Yes
updated_at DateTime Yes
deleted_at DateTime No
deleted_by Int No
user User No
faqs Faq[] No
_count Faq_CategoryCountOutputType Yes

Attachment

Name Type Nullable
id Int Yes
uuid String Yes
url String Yes
type AttachmentType Yes
ref_id Int Yes
ref_type AttachmentRefType Yes
created_at DateTime Yes

Wishlist

Name Type Nullable
id Int Yes
shop_id Int Yes
element_id Int Yes
element_type ElementType Yes
created_at DateTime Yes
shop Shop No
element Element No

Bookmark

Name Type Nullable
id Int Yes
shop_id Int Yes
element_id Int Yes
element_type ElementType Yes
created_at DateTime Yes
shop Shop No
element Element No

Recent_Used_Element

Name Type Nullable
id Int Yes
shop_id Int Yes
element_id Int Yes
element_type ElementType Yes
created_at DateTime Yes
shop Shop No
element Element No

Support_Ticket

Name Type Nullable
id Int Yes
uuid String Yes
user_id Int Yes
ref_id Int Yes
ref_type SupportRefType Yes
criteria SupportCriteria Yes
reason String Yes
description String Yes
status SupportStatus No
label SupportLabel No
assignee Int No
assigned_at DateTime No
created_at DateTime Yes
updated_at DateTime Yes
user User No
ticket_messages Ticket_Message[] No
_count Support_TicketCountOutputType Yes

Ticket_Message

Name Type Nullable
id Int Yes
ticket_id Int Yes
user_id Int Yes
message String Yes
created_at DateTime Yes
updated_at DateTime Yes
user User No
support_ticket Support_Ticket No

Contact_Request

Name Type Nullable
id Int Yes
message String Yes
name String Yes
email String Yes
phone String Yes
country_code String Yes
country String No
status ContactStatus No
created_at DateTime Yes
updated_at DateTime Yes

Team_Member

Name Type Nullable
id Int Yes
user_id Int Yes
role TeamMemberRole Yes
designation String No
badge String No
invited_by Int No
onboarded_at DateTime No
created_at DateTime Yes
updated_at DateTime Yes
user User No


UserGroupByOutputType

Name Type Nullable
id Int Yes
first_name String Yes
last_name String Yes
email String Yes
password String No
phone String No
profile_photo String No
role UserRole Yes
status UserStatus No
is_verified Boolean No
is_shopify_user Boolean No
date_of_birth DateTime No
country_code String No
country String No
address String No
website_url String No
social_handles Json No
created_at DateTime Yes
updated_at DateTime Yes
deleted_at DateTime No
deleted_by Int No
_count UserCountAggregateOutputType No
_avg UserAvgAggregateOutputType No
_sum UserSumAggregateOutputType No
_min UserMinAggregateOutputType No
_max UserMaxAggregateOutputType No


ShopGroupByOutputType

Name Type Nullable
id Int Yes
uuid String Yes
user_id Int Yes
shopify_shop_id Int Yes
name String Yes
domain String Yes
status ShopStatus Yes
subscription_id Int No
created_at DateTime Yes
updated_at DateTime Yes
_count ShopCountAggregateOutputType No
_avg ShopAvgAggregateOutputType No
_sum ShopSumAggregateOutputType No
_min ShopMinAggregateOutputType No
_max ShopMaxAggregateOutputType No


ElementGroupByOutputType

Name Type Nullable
id Int Yes
name String Yes
slug String Yes
description String Yes
featured_image String Yes
content String Yes
file_name String Yes
status GenericStatus Yes
type ElementType Yes
price Decimal Yes
discount_type DiscountType No
discount_value Decimal No
demo_url String No
video_url String No
version String No
user_id Int Yes
wishlisted_count Int No
bookmarked_count Int No
added_theme_count Int No
view_count Int No
created_at DateTime Yes
updated_at DateTime Yes
deleted_at DateTime No
deleted_by Int No
_count ElementCountAggregateOutputType No
_avg ElementAvgAggregateOutputType No
_sum ElementSumAggregateOutputType No
_min ElementMinAggregateOutputType No
_max ElementMaxAggregateOutputType No


BundleGroupByOutputType

Name Type Nullable
id Int Yes
name String Yes
slug String Yes
description String Yes
featured_image String Yes
status GenericStatus Yes
type BundleType Yes
is_auto_price Boolean No
price Decimal Yes
discount_type DiscountType No
discount_value Decimal No
demo_url String No
video_url String No
version String No
user_id Int Yes
view_count Int No
created_at DateTime Yes
updated_at DateTime Yes
deleted_at DateTime No
deleted_by Int No
_count BundleCountAggregateOutputType No
_avg BundleAvgAggregateOutputType No
_sum BundleSumAggregateOutputType No
_min BundleMinAggregateOutputType No
_max BundleMaxAggregateOutputType No


Bundle_ElementGroupByOutputType

Name Type Nullable
id Int Yes
bundle_id Int Yes
element_id Int Yes
element_type ElementType Yes
status GenericStatus Yes
user_id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
deleted_at DateTime No
deleted_by Int No
_count Bundle_ElementCountAggregateOutputType No
_avg Bundle_ElementAvgAggregateOutputType No
_sum Bundle_ElementSumAggregateOutputType No
_min Bundle_ElementMinAggregateOutputType No
_max Bundle_ElementMaxAggregateOutputType No


Element_ImageGroupByOutputType

Name Type Nullable
id Int Yes
url String Yes
element_id Int Yes
created_at DateTime Yes
_count Element_ImageCountAggregateOutputType No
_avg Element_ImageAvgAggregateOutputType No
_sum Element_ImageSumAggregateOutputType No
_min Element_ImageMinAggregateOutputType No
_max Element_ImageMaxAggregateOutputType No


Bundle_ImageGroupByOutputType

Name Type Nullable
id Int Yes
url String Yes
bundle_id Int Yes
created_at DateTime Yes
_count Bundle_ImageCountAggregateOutputType No
_avg Bundle_ImageAvgAggregateOutputType No
_sum Bundle_ImageSumAggregateOutputType No
_min Bundle_ImageMinAggregateOutputType No
_max Bundle_ImageMaxAggregateOutputType No


Element_Best_UseGroupByOutputType

Name Type Nullable
id Int Yes
element_id Int Yes
title String Yes
description String Yes
created_at DateTime Yes
updated_at DateTime Yes
_count Element_Best_UseCountAggregateOutputType No
_avg Element_Best_UseAvgAggregateOutputType No
_sum Element_Best_UseSumAggregateOutputType No
_min Element_Best_UseMinAggregateOutputType No
_max Element_Best_UseMaxAggregateOutputType No


CategoryGroupByOutputType

Name Type Nullable
id Int Yes
name String Yes
slug String Yes
description String No
type AssetType Yes
status GenericStatus Yes
image String No
banner String No
user_id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
deleted_at DateTime No
deleted_by Int No
_count CategoryCountAggregateOutputType No
_avg CategoryAvgAggregateOutputType No
_sum CategorySumAggregateOutputType No
_min CategoryMinAggregateOutputType No
_max CategoryMaxAggregateOutputType No


Element_CategoryGroupByOutputType

Name Type Nullable
id Int Yes
element_id Int Yes
category_id Int Yes
created_at DateTime Yes
_count Element_CategoryCountAggregateOutputType No
_avg Element_CategoryAvgAggregateOutputType No
_sum Element_CategorySumAggregateOutputType No
_min Element_CategoryMinAggregateOutputType No
_max Element_CategoryMaxAggregateOutputType No


Bundle_CategoryGroupByOutputType

Name Type Nullable
id Int Yes
bundle_id Int Yes
category_id Int Yes
created_at DateTime Yes
_count Bundle_CategoryCountAggregateOutputType No
_avg Bundle_CategoryAvgAggregateOutputType No
_sum Bundle_CategorySumAggregateOutputType No
_min Bundle_CategoryMinAggregateOutputType No
_max Bundle_CategoryMaxAggregateOutputType No


TagGroupByOutputType

Name Type Nullable
id Int Yes
name String Yes
slug String Yes
user_id Int Yes
description String No
image String No
banner String No
created_at DateTime Yes
updated_at DateTime Yes
deleted_at DateTime No
deleted_by Int No
_count TagCountAggregateOutputType No
_avg TagAvgAggregateOutputType No
_sum TagSumAggregateOutputType No
_min TagMinAggregateOutputType No
_max TagMaxAggregateOutputType No


Element_TagGroupByOutputType

Name Type Nullable
id Int Yes
element_id Int Yes
tag_id Int Yes
created_at DateTime Yes
_count Element_TagCountAggregateOutputType No
_avg Element_TagAvgAggregateOutputType No
_sum Element_TagSumAggregateOutputType No
_min Element_TagMinAggregateOutputType No
_max Element_TagMaxAggregateOutputType No


SessionGroupByOutputType

Name Type Nullable
id Int Yes
shop String Yes
state String No
isOnline Boolean Yes
scope String Yes
userId Int No
_count SessionCountAggregateOutputType No
_avg SessionAvgAggregateOutputType No
_sum SessionSumAggregateOutputType No
_min SessionMinAggregateOutputType No
_max SessionMaxAggregateOutputType No


OrderGroupByOutputType

Name Type Nullable
id Int Yes
uuid String Yes
shop_id Int Yes
asset_type AssetType Yes
status OrderStatus Yes
sub_total Decimal Yes
discounted_amout Decimal No
coupon_id Int No
coupon_code String No
coupon_discount_type DiscountType No
coupon_discount_value Decimal No
grand_total Decimal Yes
affiliated_by Int No
affiliated_commission Decimal No
created_at DateTime Yes
updated_at DateTime Yes
_count OrderCountAggregateOutputType No
_avg OrderAvgAggregateOutputType No
_sum OrderSumAggregateOutputType No
_min OrderMinAggregateOutputType No
_max OrderMaxAggregateOutputType No


Order_ItemGroupByOutputType

Name Type Nullable
id Int Yes
order_id Int Yes
asset_id Int Yes
asset_type AssetType Yes
price Decimal Yes
discounted_price Decimal No
discount_type DiscountType No
discount_value Decimal No
order_bundle_id Int No
_count Order_ItemCountAggregateOutputType No
_avg Order_ItemAvgAggregateOutputType No
_sum Order_ItemSumAggregateOutputType No
_min Order_ItemMinAggregateOutputType No
_max Order_ItemMaxAggregateOutputType No


CouponGroupByOutputType

Name Type Nullable
id Int Yes
code String Yes
status CouponStatus Yes
expired_at DateTime No
max_total_applied Int No
max_applied_by_shop Int No
discount_type DiscountType No
discount_value Decimal No
min_order_amount Decimal No
max_discount_limit Decimal No
is_apply_on_asset_discount Boolean No
affiliated_by Int No
commission_type DiscountType No
commission_value Decimal No
user_id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
deleted_at DateTime No
deleted_by Int No
_count CouponCountAggregateOutputType No
_avg CouponAvgAggregateOutputType No
_sum CouponSumAggregateOutputType No
_min CouponMinAggregateOutputType No
_max CouponMaxAggregateOutputType No


AffiliatorGroupByOutputType

Name Type Nullable
id Int Yes
uuid String Yes
user_id Int Yes
invited_by Int No
type AffiliatorType Yes
type_other String No
status AffiliatorStatus Yes
total_earned Decimal No
total_paid Decimal No
current_coupon_id Int No
created_at DateTime Yes
updated_at DateTime Yes
deleted_at DateTime No
deleted_by Int No
_count AffiliatorCountAggregateOutputType No
_avg AffiliatorAvgAggregateOutputType No
_sum AffiliatorSumAggregateOutputType No
_min AffiliatorMinAggregateOutputType No
_max AffiliatorMaxAggregateOutputType No


Affiliator_CommissionGroupByOutputType

Name Type Nullable
id Int Yes
uuid String Yes
affiliator_id Int Yes
user_id Int Yes
order_id Int No
shop_id Int No
coupon_id Int No
coupon_code String No
order_amout Decimal No
coupon_discount_type DiscountType No
coupon_discount_value Decimal No
commission_type DiscountType Yes
commission_value Decimal Yes
amount Decimal Yes
status CommissionStatus Yes
created_at DateTime Yes
updated_at DateTime Yes
_count Affiliator_CommissionCountAggregateOutputType No
_avg Affiliator_CommissionAvgAggregateOutputType No
_sum Affiliator_CommissionSumAggregateOutputType No
_min Affiliator_CommissionMinAggregateOutputType No
_max Affiliator_CommissionMaxAggregateOutputType No


Affiliator_Withdraw_RequestGroupByOutputType

Name Type Nullable
id Int Yes
uuid String Yes
affiliator_id Int Yes
status CommissionWithdrawStatus Yes
amount Decimal Yes
payment_method_id Int Yes
payment_method PaymentMethod Yes
payment_method_details Json Yes
assignee Int No
note String No
reject_reason String No
created_at DateTime Yes
updated_at DateTime Yes
_count Affiliator_Withdraw_RequestCountAggregateOutputType No
_avg Affiliator_Withdraw_RequestAvgAggregateOutputType No
_sum Affiliator_Withdraw_RequestSumAggregateOutputType No
_min Affiliator_Withdraw_RequestMinAggregateOutputType No
_max Affiliator_Withdraw_RequestMaxAggregateOutputType No


User_Pament_MethodGroupByOutputType

Name Type Nullable
id Int Yes
user_id Int Yes
method PaymentMethod Yes
details Json Yes
is_default Boolean Yes
created_at DateTime Yes
updated_at DateTime Yes
deleted_at DateTime No
_count User_Pament_MethodCountAggregateOutputType No
_avg User_Pament_MethodAvgAggregateOutputType No
_sum User_Pament_MethodSumAggregateOutputType No
_min User_Pament_MethodMinAggregateOutputType No
_max User_Pament_MethodMaxAggregateOutputType No


Pricing_PlanGroupByOutputType

Name Type Nullable
id Int Yes
name String Yes
tagline String Yes
description String Yes
type PricingPlanType Yes
is_recommended Boolean Yes
is_popular Boolean Yes
price Decimal Yes
discounted_price Decimal No
yearly_discounted_price Decimal No
trial_period Int No
user_id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
deleted_at DateTime No
deleted_by Int No
_count Pricing_PlanCountAggregateOutputType No
_avg Pricing_PlanAvgAggregateOutputType No
_sum Pricing_PlanSumAggregateOutputType No
_min Pricing_PlanMinAggregateOutputType No
_max Pricing_PlanMaxAggregateOutputType No


Pricing_Plan_FeatureGroupByOutputType

Name Type Nullable
id Int Yes
plan_id Int Yes
title String Yes
type String No
description String No
_count Pricing_Plan_FeatureCountAggregateOutputType No
_avg Pricing_Plan_FeatureAvgAggregateOutputType No
_sum Pricing_Plan_FeatureSumAggregateOutputType No
_min Pricing_Plan_FeatureMinAggregateOutputType No
_max Pricing_Plan_FeatureMaxAggregateOutputType No


Shop_SubscriptionGroupByOutputType

Name Type Nullable
id Int Yes
uuid String Yes
shop_id Int Yes
plan_id Int Yes
plan_type PricingPlanType Yes
status SubscriptionStatus Yes
created_at DateTime Yes
ended_at DateTime No
ended_type SubscriptionEndedType No
updated_at DateTime Yes
amount Decimal Yes
payment_method PaymentMethod Yes
_count Shop_SubscriptionCountAggregateOutputType No
_avg Shop_SubscriptionAvgAggregateOutputType No
_sum Shop_SubscriptionSumAggregateOutputType No
_min Shop_SubscriptionMinAggregateOutputType No
_max Shop_SubscriptionMaxAggregateOutputType No


FaqGroupByOutputType

Name Type Nullable
id Int Yes
user_id Int Yes
question String Yes
answer String Yes
status FaqStatus Yes
category_id Int Yes
created_at DateTime Yes
updated_at DateTime Yes
deleted_at DateTime No
deleted_by Int No
_count FaqCountAggregateOutputType No
_avg FaqAvgAggregateOutputType No
_sum FaqSumAggregateOutputType No
_min FaqMinAggregateOutputType No
_max FaqMaxAggregateOutputType No


Faq_CategoryGroupByOutputType

Name Type Nullable
id Int Yes
name String Yes
user_id Int Yes
description String No
banner String No
created_at DateTime Yes
updated_at DateTime Yes
deleted_at DateTime No
deleted_by Int No
_count Faq_CategoryCountAggregateOutputType No
_avg Faq_CategoryAvgAggregateOutputType No
_sum Faq_CategorySumAggregateOutputType No
_min Faq_CategoryMinAggregateOutputType No
_max Faq_CategoryMaxAggregateOutputType No


AttachmentGroupByOutputType

Name Type Nullable
id Int Yes
uuid String Yes
url String Yes
type AttachmentType Yes
ref_id Int Yes
ref_type AttachmentRefType Yes
created_at DateTime Yes
_count AttachmentCountAggregateOutputType No
_avg AttachmentAvgAggregateOutputType No
_sum AttachmentSumAggregateOutputType No
_min AttachmentMinAggregateOutputType No
_max AttachmentMaxAggregateOutputType No


WishlistGroupByOutputType

Name Type Nullable
id Int Yes
shop_id Int Yes
element_id Int Yes
element_type ElementType Yes
created_at DateTime Yes
_count WishlistCountAggregateOutputType No
_avg WishlistAvgAggregateOutputType No
_sum WishlistSumAggregateOutputType No
_min WishlistMinAggregateOutputType No
_max WishlistMaxAggregateOutputType No


BookmarkGroupByOutputType

Name Type Nullable
id Int Yes
shop_id Int Yes
element_id Int Yes
element_type ElementType Yes
created_at DateTime Yes
_count BookmarkCountAggregateOutputType No
_avg BookmarkAvgAggregateOutputType No
_sum BookmarkSumAggregateOutputType No
_min BookmarkMinAggregateOutputType No
_max BookmarkMaxAggregateOutputType No


Recent_Used_ElementGroupByOutputType

Name Type Nullable
id Int Yes
shop_id Int Yes
element_id Int Yes
element_type ElementType Yes
created_at DateTime Yes
_count Recent_Used_ElementCountAggregateOutputType No
_avg Recent_Used_ElementAvgAggregateOutputType No
_sum Recent_Used_ElementSumAggregateOutputType No
_min Recent_Used_ElementMinAggregateOutputType No
_max Recent_Used_ElementMaxAggregateOutputType No


Support_TicketGroupByOutputType

Name Type Nullable
id Int Yes
uuid String Yes
user_id Int Yes
ref_id Int Yes
ref_type SupportRefType Yes
criteria SupportCriteria Yes
reason String Yes
description String Yes
status SupportStatus No
label SupportLabel No
assignee Int No
assigned_at DateTime No
created_at DateTime Yes
updated_at DateTime Yes
_count Support_TicketCountAggregateOutputType No
_avg Support_TicketAvgAggregateOutputType No
_sum Support_TicketSumAggregateOutputType No
_min Support_TicketMinAggregateOutputType No
_max Support_TicketMaxAggregateOutputType No


Ticket_MessageGroupByOutputType

Name Type Nullable
id Int Yes
ticket_id Int Yes
user_id Int Yes
message String Yes
created_at DateTime Yes
updated_at DateTime Yes
_count Ticket_MessageCountAggregateOutputType No
_avg Ticket_MessageAvgAggregateOutputType No
_sum Ticket_MessageSumAggregateOutputType No
_min Ticket_MessageMinAggregateOutputType No
_max Ticket_MessageMaxAggregateOutputType No


Contact_RequestGroupByOutputType

Name Type Nullable
id Int Yes
message String Yes
name String Yes
email String Yes
phone String Yes
country_code String Yes
country String No
status ContactStatus No
created_at DateTime Yes
updated_at DateTime Yes
_count Contact_RequestCountAggregateOutputType No
_avg Contact_RequestAvgAggregateOutputType No
_sum Contact_RequestSumAggregateOutputType No
_min Contact_RequestMinAggregateOutputType No
_max Contact_RequestMaxAggregateOutputType No


Team_MemberGroupByOutputType

Name Type Nullable
id Int Yes
user_id Int Yes
role TeamMemberRole Yes
designation String No
badge String No
invited_by Int No
onboarded_at DateTime No
created_at DateTime Yes
updated_at DateTime Yes
_count Team_MemberCountAggregateOutputType No
_avg Team_MemberAvgAggregateOutputType No
_sum Team_MemberSumAggregateOutputType No
_min Team_MemberMinAggregateOutputType No
_max Team_MemberMaxAggregateOutputType No

AffectedRowsOutput

Name Type Nullable
count Int Yes

UserCountOutputType

Name Type Nullable
shops Int Yes
bundles Int Yes
bundle_elements Int Yes
elements Int Yes
pricing_plans Int Yes
faqs Int Yes
faq_categories Int Yes
categories Int Yes
tags Int Yes
support_tickets Int Yes
ticket_messages Int Yes
affiliators Int Yes
affiliator_commissions Int Yes
affiliator_withdraw_requests Int Yes
coupons Int Yes
user_pament_methods Int Yes
team_members Int Yes

UserCountAggregateOutputType

Name Type Nullable
id Int Yes
first_name Int Yes
last_name Int Yes
email Int Yes
password Int Yes
phone Int Yes
profile_photo Int Yes
role Int Yes
status Int Yes
is_verified Int Yes
is_shopify_user Int Yes
date_of_birth Int Yes
country_code Int Yes
country Int Yes
address Int Yes
website_url Int Yes
social_handles Int Yes
created_at Int Yes
updated_at Int Yes
deleted_at Int Yes
deleted_by Int Yes
_all Int Yes

UserAvgAggregateOutputType

Name Type Nullable
id Float No
deleted_by Float No

UserSumAggregateOutputType

Name Type Nullable
id Int No
deleted_by Int No

UserMinAggregateOutputType

Name Type Nullable
id Int No
first_name String No
last_name String No
email String No
password String No
phone String No
profile_photo String No
role UserRole No
status UserStatus No
is_verified Boolean No
is_shopify_user Boolean No
date_of_birth DateTime No
country_code String No
country String No
address String No
website_url String No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime No
deleted_by Int No

UserMaxAggregateOutputType

Name Type Nullable
id Int No
first_name String No
last_name String No
email String No
password String No
phone String No
profile_photo String No
role UserRole No
status UserStatus No
is_verified Boolean No
is_shopify_user Boolean No
date_of_birth DateTime No
country_code String No
country String No
address String No
website_url String No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime No
deleted_by Int No

ShopCountOutputType

Name Type Nullable
orders Int Yes
bookmarked_elements Int Yes
wishlisted_elements Int Yes
recent_used_elements Int Yes
affiliator_commissions Int Yes

ShopCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
user_id Int Yes
shopify_shop_id Int Yes
name Int Yes
domain Int Yes
status Int Yes
subscription_id Int Yes
created_at Int Yes
updated_at Int Yes
_all Int Yes

ShopAvgAggregateOutputType

Name Type Nullable
id Float No
user_id Float No
shopify_shop_id Float No
subscription_id Float No

ShopSumAggregateOutputType

Name Type Nullable
id Int No
user_id Int No
shopify_shop_id Int No
subscription_id Int No

ShopMinAggregateOutputType

Name Type Nullable
id Int No
uuid String No
user_id Int No
shopify_shop_id Int No
name String No
domain String No
status ShopStatus No
subscription_id Int No
created_at DateTime No
updated_at DateTime No

ShopMaxAggregateOutputType

Name Type Nullable
id Int No
uuid String No
user_id Int No
shopify_shop_id Int No
name String No
domain String No
status ShopStatus No
subscription_id Int No
created_at DateTime No
updated_at DateTime No

ElementCountOutputType

Name Type Nullable
images Int Yes
best_Uses Int Yes
tags Int Yes
categories Int Yes
bundles Int Yes
wishlisted_elements Int Yes
bookmarked_elements Int Yes
recent_used_elements Int Yes

ElementCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
slug Int Yes
description Int Yes
featured_image Int Yes
content Int Yes
file_name Int Yes
status Int Yes
type Int Yes
price Int Yes
discount_type Int Yes
discount_value Int Yes
demo_url Int Yes
video_url Int Yes
version Int Yes
user_id Int Yes
wishlisted_count Int Yes
bookmarked_count Int Yes
added_theme_count Int Yes
view_count Int Yes
created_at Int Yes
updated_at Int Yes
deleted_at Int Yes
deleted_by Int Yes
_all Int Yes

ElementAvgAggregateOutputType

Name Type Nullable
id Float No
price Decimal No
discount_value Decimal No
user_id Float No
wishlisted_count Float No
bookmarked_count Float No
added_theme_count Float No
view_count Float No
deleted_by Float No

ElementSumAggregateOutputType

Name Type Nullable
id Int No
price Decimal No
discount_value Decimal No
user_id Int No
wishlisted_count Int No
bookmarked_count Int No
added_theme_count Int No
view_count Int No
deleted_by Int No

ElementMinAggregateOutputType

Name Type Nullable
id Int No
name String No
slug String No
description String No
featured_image String No
content String No
file_name String No
status GenericStatus No
type ElementType No
price Decimal No
discount_type DiscountType No
discount_value Decimal No
demo_url String No
video_url String No
version String No
user_id Int No
wishlisted_count Int No
bookmarked_count Int No
added_theme_count Int No
view_count Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime No
deleted_by Int No

ElementMaxAggregateOutputType

Name Type Nullable
id Int No
name String No
slug String No
description String No
featured_image String No
content String No
file_name String No
status GenericStatus No
type ElementType No
price Decimal No
discount_type DiscountType No
discount_value Decimal No
demo_url String No
video_url String No
version String No
user_id Int No
wishlisted_count Int No
bookmarked_count Int No
added_theme_count Int No
view_count Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime No
deleted_by Int No

BundleCountOutputType

Name Type Nullable
elements Int Yes
images Int Yes
categories Int Yes

BundleCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
slug Int Yes
description Int Yes
featured_image Int Yes
status Int Yes
type Int Yes
is_auto_price Int Yes
price Int Yes
discount_type Int Yes
discount_value Int Yes
demo_url Int Yes
video_url Int Yes
version Int Yes
user_id Int Yes
view_count Int Yes
created_at Int Yes
updated_at Int Yes
deleted_at Int Yes
deleted_by Int Yes
_all Int Yes

BundleAvgAggregateOutputType

Name Type Nullable
id Float No
price Decimal No
discount_value Decimal No
user_id Float No
view_count Float No
deleted_by Float No

BundleSumAggregateOutputType

Name Type Nullable
id Int No
price Decimal No
discount_value Decimal No
user_id Int No
view_count Int No
deleted_by Int No

BundleMinAggregateOutputType

Name Type Nullable
id Int No
name String No
slug String No
description String No
featured_image String No
status GenericStatus No
type BundleType No
is_auto_price Boolean No
price Decimal No
discount_type DiscountType No
discount_value Decimal No
demo_url String No
video_url String No
version String No
user_id Int No
view_count Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime No
deleted_by Int No

BundleMaxAggregateOutputType

Name Type Nullable
id Int No
name String No
slug String No
description String No
featured_image String No
status GenericStatus No
type BundleType No
is_auto_price Boolean No
price Decimal No
discount_type DiscountType No
discount_value Decimal No
demo_url String No
video_url String No
version String No
user_id Int No
view_count Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime No
deleted_by Int No

Bundle_ElementCountAggregateOutputType

Name Type Nullable
id Int Yes
bundle_id Int Yes
element_id Int Yes
element_type Int Yes
status Int Yes
user_id Int Yes
created_at Int Yes
updated_at Int Yes
deleted_at Int Yes
deleted_by Int Yes
_all Int Yes

Bundle_ElementAvgAggregateOutputType

Name Type Nullable
id Float No
bundle_id Float No
element_id Float No
user_id Float No
deleted_by Float No

Bundle_ElementSumAggregateOutputType

Name Type Nullable
id Int No
bundle_id Int No
element_id Int No
user_id Int No
deleted_by Int No

Bundle_ElementMinAggregateOutputType

Name Type Nullable
id Int No
bundle_id Int No
element_id Int No
element_type ElementType No
status GenericStatus No
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime No
deleted_by Int No

Bundle_ElementMaxAggregateOutputType

Name Type Nullable
id Int No
bundle_id Int No
element_id Int No
element_type ElementType No
status GenericStatus No
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime No
deleted_by Int No

Element_ImageCountAggregateOutputType

Name Type Nullable
id Int Yes
url Int Yes
element_id Int Yes
created_at Int Yes
_all Int Yes

Element_ImageAvgAggregateOutputType

Name Type Nullable
id Float No
element_id Float No

Element_ImageSumAggregateOutputType

Name Type Nullable
id Int No
element_id Int No

Element_ImageMinAggregateOutputType

Name Type Nullable
id Int No
url String No
element_id Int No
created_at DateTime No

Element_ImageMaxAggregateOutputType

Name Type Nullable
id Int No
url String No
element_id Int No
created_at DateTime No

Bundle_ImageCountAggregateOutputType

Name Type Nullable
id Int Yes
url Int Yes
bundle_id Int Yes
created_at Int Yes
_all Int Yes

Bundle_ImageAvgAggregateOutputType

Name Type Nullable
id Float No
bundle_id Float No

Bundle_ImageSumAggregateOutputType

Name Type Nullable
id Int No
bundle_id Int No

Bundle_ImageMinAggregateOutputType

Name Type Nullable
id Int No
url String No
bundle_id Int No
created_at DateTime No

Bundle_ImageMaxAggregateOutputType

Name Type Nullable
id Int No
url String No
bundle_id Int No
created_at DateTime No

Element_Best_UseCountAggregateOutputType

Name Type Nullable
id Int Yes
element_id Int Yes
title Int Yes
description Int Yes
created_at Int Yes
updated_at Int Yes
_all Int Yes

Element_Best_UseAvgAggregateOutputType

Name Type Nullable
id Float No
element_id Float No

Element_Best_UseSumAggregateOutputType

Name Type Nullable
id Int No
element_id Int No

Element_Best_UseMinAggregateOutputType

Name Type Nullable
id Int No
element_id Int No
title String No
description String No
created_at DateTime No
updated_at DateTime No

Element_Best_UseMaxAggregateOutputType

Name Type Nullable
id Int No
element_id Int No
title String No
description String No
created_at DateTime No
updated_at DateTime No

CategoryCountOutputType

Name Type Nullable
element_categories Int Yes
bundle_categories Int Yes

CategoryCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
slug Int Yes
description Int Yes
type Int Yes
status Int Yes
image Int Yes
banner Int Yes
user_id Int Yes
created_at Int Yes
updated_at Int Yes
deleted_at Int Yes
deleted_by Int Yes
_all Int Yes

CategoryAvgAggregateOutputType

Name Type Nullable
id Float No
user_id Float No
deleted_by Float No

CategorySumAggregateOutputType

Name Type Nullable
id Int No
user_id Int No
deleted_by Int No

CategoryMinAggregateOutputType

Name Type Nullable
id Int No
name String No
slug String No
description String No
type AssetType No
status GenericStatus No
image String No
banner String No
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime No
deleted_by Int No

CategoryMaxAggregateOutputType

Name Type Nullable
id Int No
name String No
slug String No
description String No
type AssetType No
status GenericStatus No
image String No
banner String No
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime No
deleted_by Int No

Element_CategoryCountAggregateOutputType

Name Type Nullable
id Int Yes
element_id Int Yes
category_id Int Yes
created_at Int Yes
_all Int Yes

Element_CategoryAvgAggregateOutputType

Name Type Nullable
id Float No
element_id Float No
category_id Float No

Element_CategorySumAggregateOutputType

Name Type Nullable
id Int No
element_id Int No
category_id Int No

Element_CategoryMinAggregateOutputType

Name Type Nullable
id Int No
element_id Int No
category_id Int No
created_at DateTime No

Element_CategoryMaxAggregateOutputType

Name Type Nullable
id Int No
element_id Int No
category_id Int No
created_at DateTime No

Bundle_CategoryCountAggregateOutputType

Name Type Nullable
id Int Yes
bundle_id Int Yes
category_id Int Yes
created_at Int Yes
_all Int Yes

Bundle_CategoryAvgAggregateOutputType

Name Type Nullable
id Float No
bundle_id Float No
category_id Float No

Bundle_CategorySumAggregateOutputType

Name Type Nullable
id Int No
bundle_id Int No
category_id Int No

Bundle_CategoryMinAggregateOutputType

Name Type Nullable
id Int No
bundle_id Int No
category_id Int No
created_at DateTime No

Bundle_CategoryMaxAggregateOutputType

Name Type Nullable
id Int No
bundle_id Int No
category_id Int No
created_at DateTime No

TagCountOutputType

Name Type Nullable
elements Int Yes

TagCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
slug Int Yes
user_id Int Yes
description Int Yes
image Int Yes
banner Int Yes
created_at Int Yes
updated_at Int Yes
deleted_at Int Yes
deleted_by Int Yes
_all Int Yes

TagAvgAggregateOutputType

Name Type Nullable
id Float No
user_id Float No
deleted_by Float No

TagSumAggregateOutputType

Name Type Nullable
id Int No
user_id Int No
deleted_by Int No

TagMinAggregateOutputType

Name Type Nullable
id Int No
name String No
slug String No
user_id Int No
description String No
image String No
banner String No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime No
deleted_by Int No

TagMaxAggregateOutputType

Name Type Nullable
id Int No
name String No
slug String No
user_id Int No
description String No
image String No
banner String No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime No
deleted_by Int No

Element_TagCountAggregateOutputType

Name Type Nullable
id Int Yes
element_id Int Yes
tag_id Int Yes
created_at Int Yes
_all Int Yes

Element_TagAvgAggregateOutputType

Name Type Nullable
id Float No
element_id Float No
tag_id Float No

Element_TagSumAggregateOutputType

Name Type Nullable
id Int No
element_id Int No
tag_id Int No

Element_TagMinAggregateOutputType

Name Type Nullable
id Int No
element_id Int No
tag_id Int No
created_at DateTime No

Element_TagMaxAggregateOutputType

Name Type Nullable
id Int No
element_id Int No
tag_id Int No
created_at DateTime No

SessionCountAggregateOutputType

Name Type Nullable
id Int Yes
shop Int Yes
state Int Yes
isOnline Int Yes
scope Int Yes
userId Int Yes
_all Int Yes

SessionAvgAggregateOutputType

Name Type Nullable
id Float No
userId Float No

SessionSumAggregateOutputType

Name Type Nullable
id Int No
userId Int No

SessionMinAggregateOutputType

Name Type Nullable
id Int No
shop String No
state String No
isOnline Boolean No
scope String No
userId Int No

SessionMaxAggregateOutputType

Name Type Nullable
id Int No
shop String No
state String No
isOnline Boolean No
scope String No
userId Int No

OrderCountOutputType

Name Type Nullable
order_items Int Yes
affiliator_commissions Int Yes

OrderCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
shop_id Int Yes
asset_type Int Yes
status Int Yes
sub_total Int Yes
discounted_amout Int Yes
coupon_id Int Yes
coupon_code Int Yes
coupon_discount_type Int Yes
coupon_discount_value Int Yes
grand_total Int Yes
affiliated_by Int Yes
affiliated_commission Int Yes
created_at Int Yes
updated_at Int Yes
_all Int Yes

OrderAvgAggregateOutputType

Name Type Nullable
id Float No
shop_id Float No
sub_total Decimal No
discounted_amout Decimal No
coupon_id Float No
coupon_discount_value Decimal No
grand_total Decimal No
affiliated_by Float No
affiliated_commission Decimal No

OrderSumAggregateOutputType

Name Type Nullable
id Int No
shop_id Int No
sub_total Decimal No
discounted_amout Decimal No
coupon_id Int No
coupon_discount_value Decimal No
grand_total Decimal No
affiliated_by Int No
affiliated_commission Decimal No

OrderMinAggregateOutputType

Name Type Nullable
id Int No
uuid String No
shop_id Int No
asset_type AssetType No
status OrderStatus No
sub_total Decimal No
discounted_amout Decimal No
coupon_id Int No
coupon_code String No
coupon_discount_type DiscountType No
coupon_discount_value Decimal No
grand_total Decimal No
affiliated_by Int No
affiliated_commission Decimal No
created_at DateTime No
updated_at DateTime No

OrderMaxAggregateOutputType

Name Type Nullable
id Int No
uuid String No
shop_id Int No
asset_type AssetType No
status OrderStatus No
sub_total Decimal No
discounted_amout Decimal No
coupon_id Int No
coupon_code String No
coupon_discount_type DiscountType No
coupon_discount_value Decimal No
grand_total Decimal No
affiliated_by Int No
affiliated_commission Decimal No
created_at DateTime No
updated_at DateTime No

Order_ItemCountAggregateOutputType

Name Type Nullable
id Int Yes
order_id Int Yes
asset_id Int Yes
asset_type Int Yes
price Int Yes
discounted_price Int Yes
discount_type Int Yes
discount_value Int Yes
order_bundle_id Int Yes
_all Int Yes

Order_ItemAvgAggregateOutputType

Name Type Nullable
id Float No
order_id Float No
asset_id Float No
price Decimal No
discounted_price Decimal No
discount_value Decimal No
order_bundle_id Float No

Order_ItemSumAggregateOutputType

Name Type Nullable
id Int No
order_id Int No
asset_id Int No
price Decimal No
discounted_price Decimal No
discount_value Decimal No
order_bundle_id Int No

Order_ItemMinAggregateOutputType

Name Type Nullable
id Int No
order_id Int No
asset_id Int No
asset_type AssetType No
price Decimal No
discounted_price Decimal No
discount_type DiscountType No
discount_value Decimal No
order_bundle_id Int No

Order_ItemMaxAggregateOutputType

Name Type Nullable
id Int No
order_id Int No
asset_id Int No
asset_type AssetType No
price Decimal No
discounted_price Decimal No
discount_type DiscountType No
discount_value Decimal No
order_bundle_id Int No

CouponCountOutputType

Name Type Nullable
orders Int Yes
affiliator_commissions Int Yes

CouponCountAggregateOutputType

Name Type Nullable
id Int Yes
code Int Yes
status Int Yes
expired_at Int Yes
max_total_applied Int Yes
max_applied_by_shop Int Yes
discount_type Int Yes
discount_value Int Yes
min_order_amount Int Yes
max_discount_limit Int Yes
is_apply_on_asset_discount Int Yes
affiliated_by Int Yes
commission_type Int Yes
commission_value Int Yes
user_id Int Yes
created_at Int Yes
updated_at Int Yes
deleted_at Int Yes
deleted_by Int Yes
_all Int Yes

CouponAvgAggregateOutputType

Name Type Nullable
id Float No
max_total_applied Float No
max_applied_by_shop Float No
discount_value Decimal No
min_order_amount Decimal No
max_discount_limit Decimal No
affiliated_by Float No
commission_value Decimal No
user_id Float No
deleted_by Float No

CouponSumAggregateOutputType

Name Type Nullable
id Int No
max_total_applied Int No
max_applied_by_shop Int No
discount_value Decimal No
min_order_amount Decimal No
max_discount_limit Decimal No
affiliated_by Int No
commission_value Decimal No
user_id Int No
deleted_by Int No

CouponMinAggregateOutputType

Name Type Nullable
id Int No
code String No
status CouponStatus No
expired_at DateTime No
max_total_applied Int No
max_applied_by_shop Int No
discount_type DiscountType No
discount_value Decimal No
min_order_amount Decimal No
max_discount_limit Decimal No
is_apply_on_asset_discount Boolean No
affiliated_by Int No
commission_type DiscountType No
commission_value Decimal No
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime No
deleted_by Int No

CouponMaxAggregateOutputType

Name Type Nullable
id Int No
code String No
status CouponStatus No
expired_at DateTime No
max_total_applied Int No
max_applied_by_shop Int No
discount_type DiscountType No
discount_value Decimal No
min_order_amount Decimal No
max_discount_limit Decimal No
is_apply_on_asset_discount Boolean No
affiliated_by Int No
commission_type DiscountType No
commission_value Decimal No
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime No
deleted_by Int No

AffiliatorCountOutputType

Name Type Nullable
affiliator_withdraw_requests Int Yes
affiliator_commissions Int Yes
coupons Int Yes

AffiliatorCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
user_id Int Yes
invited_by Int Yes
type Int Yes
type_other Int Yes
status Int Yes
total_earned Int Yes
total_paid Int Yes
current_coupon_id Int Yes
created_at Int Yes
updated_at Int Yes
deleted_at Int Yes
deleted_by Int Yes
_all Int Yes

AffiliatorAvgAggregateOutputType

Name Type Nullable
id Float No
user_id Float No
invited_by Float No
total_earned Decimal No
total_paid Decimal No
current_coupon_id Float No
deleted_by Float No

AffiliatorSumAggregateOutputType

Name Type Nullable
id Int No
user_id Int No
invited_by Int No
total_earned Decimal No
total_paid Decimal No
current_coupon_id Int No
deleted_by Int No

AffiliatorMinAggregateOutputType

Name Type Nullable
id Int No
uuid String No
user_id Int No
invited_by Int No
type AffiliatorType No
type_other String No
status AffiliatorStatus No
total_earned Decimal No
total_paid Decimal No
current_coupon_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime No
deleted_by Int No

AffiliatorMaxAggregateOutputType

Name Type Nullable
id Int No
uuid String No
user_id Int No
invited_by Int No
type AffiliatorType No
type_other String No
status AffiliatorStatus No
total_earned Decimal No
total_paid Decimal No
current_coupon_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime No
deleted_by Int No

Affiliator_CommissionCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
affiliator_id Int Yes
user_id Int Yes
order_id Int Yes
shop_id Int Yes
coupon_id Int Yes
coupon_code Int Yes
order_amout Int Yes
coupon_discount_type Int Yes
coupon_discount_value Int Yes
commission_type Int Yes
commission_value Int Yes
amount Int Yes
status Int Yes
created_at Int Yes
updated_at Int Yes
_all Int Yes

Affiliator_CommissionAvgAggregateOutputType

Name Type Nullable
id Float No
affiliator_id Float No
user_id Float No
order_id Float No
shop_id Float No
coupon_id Float No
order_amout Decimal No
coupon_discount_value Decimal No
commission_value Decimal No
amount Decimal No

Affiliator_CommissionSumAggregateOutputType

Name Type Nullable
id Int No
affiliator_id Int No
user_id Int No
order_id Int No
shop_id Int No
coupon_id Int No
order_amout Decimal No
coupon_discount_value Decimal No
commission_value Decimal No
amount Decimal No

Affiliator_CommissionMinAggregateOutputType

Name Type Nullable
id Int No
uuid String No
affiliator_id Int No
user_id Int No
order_id Int No
shop_id Int No
coupon_id Int No
coupon_code String No
order_amout Decimal No
coupon_discount_type DiscountType No
coupon_discount_value Decimal No
commission_type DiscountType No
commission_value Decimal No
amount Decimal No
status CommissionStatus No
created_at DateTime No
updated_at DateTime No

Affiliator_CommissionMaxAggregateOutputType

Name Type Nullable
id Int No
uuid String No
affiliator_id Int No
user_id Int No
order_id Int No
shop_id Int No
coupon_id Int No
coupon_code String No
order_amout Decimal No
coupon_discount_type DiscountType No
coupon_discount_value Decimal No
commission_type DiscountType No
commission_value Decimal No
amount Decimal No
status CommissionStatus No
created_at DateTime No
updated_at DateTime No

Affiliator_Withdraw_RequestCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
affiliator_id Int Yes
status Int Yes
amount Int Yes
payment_method_id Int Yes
payment_method Int Yes
payment_method_details Int Yes
assignee Int Yes
note Int Yes
reject_reason Int Yes
created_at Int Yes
updated_at Int Yes
_all Int Yes

Affiliator_Withdraw_RequestAvgAggregateOutputType

Name Type Nullable
id Float No
affiliator_id Float No
amount Decimal No
payment_method_id Float No
assignee Float No

Affiliator_Withdraw_RequestSumAggregateOutputType

Name Type Nullable
id Int No
affiliator_id Int No
amount Decimal No
payment_method_id Int No
assignee Int No

Affiliator_Withdraw_RequestMinAggregateOutputType

Name Type Nullable
id Int No
uuid String No
affiliator_id Int No
status CommissionWithdrawStatus No
amount Decimal No
payment_method_id Int No
payment_method PaymentMethod No
assignee Int No
note String No
reject_reason String No
created_at DateTime No
updated_at DateTime No

Affiliator_Withdraw_RequestMaxAggregateOutputType

Name Type Nullable
id Int No
uuid String No
affiliator_id Int No
status CommissionWithdrawStatus No
amount Decimal No
payment_method_id Int No
payment_method PaymentMethod No
assignee Int No
note String No
reject_reason String No
created_at DateTime No
updated_at DateTime No

User_Pament_MethodCountOutputType

Name Type Nullable
affiliator_withdraw_requests Int Yes

User_Pament_MethodCountAggregateOutputType

Name Type Nullable
id Int Yes
user_id Int Yes
method Int Yes
details Int Yes
is_default Int Yes
created_at Int Yes
updated_at Int Yes
deleted_at Int Yes
_all Int Yes

User_Pament_MethodAvgAggregateOutputType

Name Type Nullable
id Float No
user_id Float No

User_Pament_MethodSumAggregateOutputType

Name Type Nullable
id Int No
user_id Int No

User_Pament_MethodMinAggregateOutputType

Name Type Nullable
id Int No
user_id Int No
method PaymentMethod No
is_default Boolean No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime No

User_Pament_MethodMaxAggregateOutputType

Name Type Nullable
id Int No
user_id Int No
method PaymentMethod No
is_default Boolean No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime No

Pricing_PlanCountOutputType

Name Type Nullable
subscriptions Int Yes
pricing_plan_features Int Yes

Pricing_PlanCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
tagline Int Yes
description Int Yes
type Int Yes
is_recommended Int Yes
is_popular Int Yes
price Int Yes
discounted_price Int Yes
yearly_discounted_price Int Yes
trial_period Int Yes
user_id Int Yes
created_at Int Yes
updated_at Int Yes
deleted_at Int Yes
deleted_by Int Yes
_all Int Yes

Pricing_PlanAvgAggregateOutputType

Name Type Nullable
id Float No
price Decimal No
discounted_price Decimal No
yearly_discounted_price Decimal No
trial_period Float No
user_id Float No
deleted_by Float No

Pricing_PlanSumAggregateOutputType

Name Type Nullable
id Int No
price Decimal No
discounted_price Decimal No
yearly_discounted_price Decimal No
trial_period Int No
user_id Int No
deleted_by Int No

Pricing_PlanMinAggregateOutputType

Name Type Nullable
id Int No
name String No
tagline String No
description String No
type PricingPlanType No
is_recommended Boolean No
is_popular Boolean No
price Decimal No
discounted_price Decimal No
yearly_discounted_price Decimal No
trial_period Int No
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime No
deleted_by Int No

Pricing_PlanMaxAggregateOutputType

Name Type Nullable
id Int No
name String No
tagline String No
description String No
type PricingPlanType No
is_recommended Boolean No
is_popular Boolean No
price Decimal No
discounted_price Decimal No
yearly_discounted_price Decimal No
trial_period Int No
user_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime No
deleted_by Int No

Pricing_Plan_FeatureCountAggregateOutputType

Name Type Nullable
id Int Yes
plan_id Int Yes
title Int Yes
type Int Yes
description Int Yes
_all Int Yes

Pricing_Plan_FeatureAvgAggregateOutputType

Name Type Nullable
id Float No
plan_id Float No

Pricing_Plan_FeatureSumAggregateOutputType

Name Type Nullable
id Int No
plan_id Int No

Pricing_Plan_FeatureMinAggregateOutputType

Name Type Nullable
id Int No
plan_id Int No
title String No
type String No
description String No

Pricing_Plan_FeatureMaxAggregateOutputType

Name Type Nullable
id Int No
plan_id Int No
title String No
type String No
description String No

Shop_SubscriptionCountOutputType

Name Type Nullable
shops Int Yes

Shop_SubscriptionCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
shop_id Int Yes
plan_id Int Yes
plan_type Int Yes
status Int Yes
created_at Int Yes
ended_at Int Yes
ended_type Int Yes
updated_at Int Yes
amount Int Yes
payment_method Int Yes
_all Int Yes

Shop_SubscriptionAvgAggregateOutputType

Name Type Nullable
id Float No
shop_id Float No
plan_id Float No
amount Decimal No

Shop_SubscriptionSumAggregateOutputType

Name Type Nullable
id Int No
shop_id Int No
plan_id Int No
amount Decimal No

Shop_SubscriptionMinAggregateOutputType

Name Type Nullable
id Int No
uuid String No
shop_id Int No
plan_id Int No
plan_type PricingPlanType No
status SubscriptionStatus No
created_at DateTime No
ended_at DateTime No
ended_type SubscriptionEndedType No
updated_at DateTime No
amount Decimal No
payment_method PaymentMethod No

Shop_SubscriptionMaxAggregateOutputType

Name Type Nullable
id Int No
uuid String No
shop_id Int No
plan_id Int No
plan_type PricingPlanType No
status SubscriptionStatus No
created_at DateTime No
ended_at DateTime No
ended_type SubscriptionEndedType No
updated_at DateTime No
amount Decimal No
payment_method PaymentMethod No

FaqCountAggregateOutputType

Name Type Nullable
id Int Yes
user_id Int Yes
question Int Yes
answer Int Yes
status Int Yes
category_id Int Yes
created_at Int Yes
updated_at Int Yes
deleted_at Int Yes
deleted_by Int Yes
_all Int Yes

FaqAvgAggregateOutputType

Name Type Nullable
id Float No
user_id Float No
category_id Float No
deleted_by Float No

FaqSumAggregateOutputType

Name Type Nullable
id Int No
user_id Int No
category_id Int No
deleted_by Int No

FaqMinAggregateOutputType

Name Type Nullable
id Int No
user_id Int No
question String No
answer String No
status FaqStatus No
category_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime No
deleted_by Int No

FaqMaxAggregateOutputType

Name Type Nullable
id Int No
user_id Int No
question String No
answer String No
status FaqStatus No
category_id Int No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime No
deleted_by Int No

Faq_CategoryCountOutputType

Name Type Nullable
faqs Int Yes

Faq_CategoryCountAggregateOutputType

Name Type Nullable
id Int Yes
name Int Yes
user_id Int Yes
description Int Yes
banner Int Yes
created_at Int Yes
updated_at Int Yes
deleted_at Int Yes
deleted_by Int Yes
_all Int Yes

Faq_CategoryAvgAggregateOutputType

Name Type Nullable
id Float No
user_id Float No
deleted_by Float No

Faq_CategorySumAggregateOutputType

Name Type Nullable
id Int No
user_id Int No
deleted_by Int No

Faq_CategoryMinAggregateOutputType

Name Type Nullable
id Int No
name String No
user_id Int No
description String No
banner String No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime No
deleted_by Int No

Faq_CategoryMaxAggregateOutputType

Name Type Nullable
id Int No
name String No
user_id Int No
description String No
banner String No
created_at DateTime No
updated_at DateTime No
deleted_at DateTime No
deleted_by Int No

AttachmentCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
url Int Yes
type Int Yes
ref_id Int Yes
ref_type Int Yes
created_at Int Yes
_all Int Yes

AttachmentAvgAggregateOutputType

Name Type Nullable
id Float No
ref_id Float No

AttachmentSumAggregateOutputType

Name Type Nullable
id Int No
ref_id Int No

AttachmentMinAggregateOutputType

Name Type Nullable
id Int No
uuid String No
url String No
type AttachmentType No
ref_id Int No
ref_type AttachmentRefType No
created_at DateTime No

AttachmentMaxAggregateOutputType

Name Type Nullable
id Int No
uuid String No
url String No
type AttachmentType No
ref_id Int No
ref_type AttachmentRefType No
created_at DateTime No

WishlistCountAggregateOutputType

Name Type Nullable
id Int Yes
shop_id Int Yes
element_id Int Yes
element_type Int Yes
created_at Int Yes
_all Int Yes

WishlistAvgAggregateOutputType

Name Type Nullable
id Float No
shop_id Float No
element_id Float No

WishlistSumAggregateOutputType

Name Type Nullable
id Int No
shop_id Int No
element_id Int No

WishlistMinAggregateOutputType

Name Type Nullable
id Int No
shop_id Int No
element_id Int No
element_type ElementType No
created_at DateTime No

WishlistMaxAggregateOutputType

Name Type Nullable
id Int No
shop_id Int No
element_id Int No
element_type ElementType No
created_at DateTime No

BookmarkCountAggregateOutputType

Name Type Nullable
id Int Yes
shop_id Int Yes
element_id Int Yes
element_type Int Yes
created_at Int Yes
_all Int Yes

BookmarkAvgAggregateOutputType

Name Type Nullable
id Float No
shop_id Float No
element_id Float No

BookmarkSumAggregateOutputType

Name Type Nullable
id Int No
shop_id Int No
element_id Int No

BookmarkMinAggregateOutputType

Name Type Nullable
id Int No
shop_id Int No
element_id Int No
element_type ElementType No
created_at DateTime No

BookmarkMaxAggregateOutputType

Name Type Nullable
id Int No
shop_id Int No
element_id Int No
element_type ElementType No
created_at DateTime No

Recent_Used_ElementCountAggregateOutputType

Name Type Nullable
id Int Yes
shop_id Int Yes
element_id Int Yes
element_type Int Yes
created_at Int Yes
_all Int Yes

Recent_Used_ElementAvgAggregateOutputType

Name Type Nullable
id Float No
shop_id Float No
element_id Float No

Recent_Used_ElementSumAggregateOutputType

Name Type Nullable
id Int No
shop_id Int No
element_id Int No

Recent_Used_ElementMinAggregateOutputType

Name Type Nullable
id Int No
shop_id Int No
element_id Int No
element_type ElementType No
created_at DateTime No

Recent_Used_ElementMaxAggregateOutputType

Name Type Nullable
id Int No
shop_id Int No
element_id Int No
element_type ElementType No
created_at DateTime No

Support_TicketCountOutputType

Name Type Nullable
ticket_messages Int Yes

Support_TicketCountAggregateOutputType

Name Type Nullable
id Int Yes
uuid Int Yes
user_id Int Yes
ref_id Int Yes
ref_type Int Yes
criteria Int Yes
reason Int Yes
description Int Yes
status Int Yes
label Int Yes
assignee Int Yes
assigned_at Int Yes
created_at Int Yes
updated_at Int Yes
_all Int Yes

Support_TicketAvgAggregateOutputType

Name Type Nullable
id Float No
user_id Float No
ref_id Float No
assignee Float No

Support_TicketSumAggregateOutputType

Name Type Nullable
id Int No
user_id Int No
ref_id Int No
assignee Int No

Support_TicketMinAggregateOutputType

Name Type Nullable
id Int No
uuid String No
user_id Int No
ref_id Int No
ref_type SupportRefType No
criteria SupportCriteria No
reason String No
description String No
status SupportStatus No
label SupportLabel No
assignee Int No
assigned_at DateTime No
created_at DateTime No
updated_at DateTime No

Support_TicketMaxAggregateOutputType

Name Type Nullable
id Int No
uuid String No
user_id Int No
ref_id Int No
ref_type SupportRefType No
criteria SupportCriteria No
reason String No
description String No
status SupportStatus No
label SupportLabel No
assignee Int No
assigned_at DateTime No
created_at DateTime No
updated_at DateTime No

Ticket_MessageCountAggregateOutputType

Name Type Nullable
id Int Yes
ticket_id Int Yes
user_id Int Yes
message Int Yes
created_at Int Yes
updated_at Int Yes
_all Int Yes

Ticket_MessageAvgAggregateOutputType

Name Type Nullable
id Float No
ticket_id Float No
user_id Float No

Ticket_MessageSumAggregateOutputType

Name Type Nullable
id Int No
ticket_id Int No
user_id Int No

Ticket_MessageMinAggregateOutputType

Name Type Nullable
id Int No
ticket_id Int No
user_id Int No
message String No
created_at DateTime No
updated_at DateTime No

Ticket_MessageMaxAggregateOutputType

Name Type Nullable
id Int No
ticket_id Int No
user_id Int No
message String No
created_at DateTime No
updated_at DateTime No

Contact_RequestCountAggregateOutputType

Name Type Nullable
id Int Yes
message Int Yes
name Int Yes
email Int Yes
phone Int Yes
country_code Int Yes
country Int Yes
status Int Yes
created_at Int Yes
updated_at Int Yes
_all Int Yes

Contact_RequestAvgAggregateOutputType

Name Type Nullable
id Float No

Contact_RequestSumAggregateOutputType

Name Type Nullable
id Int No

Contact_RequestMinAggregateOutputType

Name Type Nullable
id Int No
message String No
name String No
email String No
phone String No
country_code String No
country String No
status ContactStatus No
created_at DateTime No
updated_at DateTime No

Contact_RequestMaxAggregateOutputType

Name Type Nullable
id Int No
message String No
name String No
email String No
phone String No
country_code String No
country String No
status ContactStatus No
created_at DateTime No
updated_at DateTime No

Team_MemberCountAggregateOutputType

Name Type Nullable
id Int Yes
user_id Int Yes
role Int Yes
designation Int Yes
badge Int Yes
invited_by Int Yes
onboarded_at Int Yes
created_at Int Yes
updated_at Int Yes
_all Int Yes

Team_MemberAvgAggregateOutputType

Name Type Nullable
id Float No
user_id Float No
invited_by Float No

Team_MemberSumAggregateOutputType

Name Type Nullable
id Int No
user_id Int No
invited_by Int No

Team_MemberMinAggregateOutputType

Name Type Nullable
id Int No
user_id Int No
role TeamMemberRole No
designation String No
badge String No
invited_by Int No
onboarded_at DateTime No
created_at DateTime No
updated_at DateTime No

Team_MemberMaxAggregateOutputType

Name Type Nullable
id Int No
user_id Int No
role TeamMemberRole No
designation String No
badge String No
invited_by Int No
onboarded_at DateTime No
created_at DateTime No
updated_at DateTime No